Files
IRTH-2/client/src/components/icons/FacebookIcon.tsx
T
2024-08-08 19:24:04 +05:00

24 lines
1.1 KiB
TypeScript

interface Props {
className?: string;
}
function FacebookIcon({ className }: Props) {
return (
<svg
width={20}
height={20}
viewBox="0 0 20 20"
fill="none"
xmlns="http://www.w3.org/2000/svg"
className={className}
>
<path
d="M11.8337 2.39575C10.8115 2.39575 9.83115 2.80181 9.10835 3.52461C8.38555 4.24741 7.97949 5.22773 7.97949 6.24992V8.39575H5.91699C5.81344 8.39575 5.72949 8.4797 5.72949 8.58325V11.4166C5.72949 11.5201 5.81344 11.6041 5.91699 11.6041H7.97949V17.4166C7.97949 17.5201 8.06344 17.6041 8.16699 17.6041H11.0003C11.1039 17.6041 11.1878 17.5201 11.1878 17.4166V11.6041H13.2686C13.3546 11.6041 13.4296 11.5455 13.4505 11.4621L14.1588 8.62873C14.1884 8.51039 14.0989 8.39575 13.9769 8.39575H11.1878V6.24992C11.1878 6.07863 11.2559 5.91436 11.377 5.79325C11.4981 5.67213 11.6624 5.60409 11.8337 5.60409H14.0003C14.1039 5.60409 14.1878 5.52014 14.1878 5.41659V2.58325C14.1878 2.4797 14.1039 2.39575 14.0003 2.39575H11.8337Z"
fill="currentColor"
/>
</svg>
);
}
export default FacebookIcon;