import React from "react"; interface Props { fill?: string; size?: number; } function FacebookIcon({ fill = "#435E98", size = 24 }: Props) { return ( ); } FacebookIcon.componentName = "FacebookIcon"; export default FacebookIcon;