@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 774 B
JavaScript
import { memo } from 'react';
import Svg, { Path } from 'react-native-svg';
const Icon = memo((_props) => {
const { color = 'black', size = 24, ...props } = _props;
return (<Svg fill={color} viewBox="0 0 24 24" width={size} height={size} {...props}>
<Path d="M12.001 2c-5.523 0-10 4.477-10 10 0 4.991 3.657 9.128 8.438 9.878v-6.987h-2.54V12h2.54V9.797c0-2.506 1.492-3.89 3.777-3.89 1.094 0 2.238.195 2.238.195v2.46h-1.26c-1.243 0-1.63.771-1.63 1.562V12h2.773l-.443 2.89h-2.33v6.988C18.344 21.129 22 16.992 22 12c0-5.523-4.477-10-10-10"/>
</Svg>);
});
Icon.displayName = 'FacebookCircleFill';
/**
* Remix Icon: Facebook Circle Fill
* @see {@link https://remixicon.com/icon/facebook-circle-fill Remix Icon Docs}
*/
export const FacebookCircleFill = Icon;