import Typography, { TypographyProps, } from "@/components/ui/Typography/Typography"; import { cn } from "@/lib/utils"; interface PolicyProps extends React.ComponentProps<"div"> { text?: TypographyProps<"p">; } export default function Policy({ text, ...props }: PolicyProps) { return (