UNPKG

welcome-ui

Version:

Customizable design system with react, typescript, tailwindcss and ariakit.

15 lines (14 loc) 355 B
export interface AspectRatioOptions { /** * The aspect ratio of the component. * @default '4-3' * * Options: * - 'square' → 1 / 1 * - '4-3' → 4 / 3 * - '3-2' → 3 / 2 * - 'video' → 16 / 9 */ ratio?: '3-2' | '4-3' | 'square' | 'video'; } export type AspectRatioProps = AspectRatioOptions;