import * as React from "react" type FacebookIconProps = React.ComponentProps<"svg"> & { title?: string } export function FacebookIcon({ title, ...props }: FacebookIconProps) { const ariaHidden = title ? undefined : true return ( {title ? {title} : null} ) }