shadcn-react
Version:
A simple wrapper for shadcn/ui
7 lines (6 loc) • 328 B
TypeScript
import React from 'react';
import { AspectRatio as UiAspectRatio } from '../ui/aspect-ratio';
export interface AspectRatioProps extends React.ComponentPropsWithoutRef<typeof UiAspectRatio> {
children?: React.ReactNode;
}
export declare function AspectRatio(props: AspectRatioProps): import("react/jsx-runtime").JSX.Element;