import { SVGProps } from "react"; type IconSvgProps = SVGProps & { size?: number; }; export const FacebookIcon = ({ size, height = 24, width = 24, fill = "currentColor", ...props }: IconSvgProps) => ( ); export const InstagramIcon = ({ size, height = 24, width = 24, fill = "currentColor", ...props }: IconSvgProps) => ( ); export const YoutubeIcon = ({ size, height = 24, width = 24, fill = "currentColor", ...props }: IconSvgProps) => ( ); export const TiktokIcon = ({ size, height = 24, width = 24, fill = "currentColor", ...props }: IconSvgProps) => ( ); export const XIcon = ({ size, height = 24, width = 24, fill = "currentColor", ...props }: IconSvgProps) => ( ); export const NewCampaignIcon = ({ size, height = 24, width = 24, fill = "currentColor", ...props }: IconSvgProps) => ( );