import "./styles.css"; interface PolicyProps { children: string | JSX.Element | null; sizing?: "small" | "medium" | "large"; className?: string; } const sizes = { small: "policy--small", medium: "policy--medium", large: "policy--large", }; function Policy({ children, sizing = "small", className = "", }: PolicyProps): JSX.Element { return (
{children}