15 lines
489 B
TypeScript
15 lines
489 B
TypeScript
import type { SystemStyleObject, ConditionalValue } from '../types'
|
|
import type { PropertyValue } from '../types/prop-type'
|
|
import type { Properties } from '../types/csstype'
|
|
import type { Tokens } from '../tokens'
|
|
|
|
export type AspectRatioProperties = {
|
|
ratio?: ConditionalValue<number>
|
|
}
|
|
|
|
|
|
type AspectRatioOptions = AspectRatioProperties & Omit<SystemStyleObject, keyof AspectRatioProperties | 'aspectRatio'>
|
|
|
|
|
|
export declare function aspectRatio(options?: AspectRatioOptions): string
|