import type { SVGProps } from "react"; interface Props extends SVGProps { size?: number; } const Snapchat = ({ size = 24, ...props }: Props) => { return ( ); }; export default Snapchat;