Blame view

泰额版/Food Labeling Management Platform泰鄂/src/components/ui/aspect-ratio.tsx 290 Bytes
884054fb   “wangming”   项目初始化
1
2
3
4
5
6
7
8
9
10
11
  "use client";
  
  import * as AspectRatioPrimitive from "@radix-ui/react-aspect-ratio@1.1.2";
  
  function AspectRatio({
    ...props
  }: React.ComponentProps<typeof AspectRatioPrimitive.Root>) {
    return <AspectRatioPrimitive.Root data-slot="aspect-ratio" {...props} />;
  }
  
  export { AspectRatio };