@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 900 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 4.86q-4.76 0-5.95 4.76 1.785-2.38 4.165-1.785c.905.226 1.552.883 2.268 1.61C13.651 10.63 15 12 17.95 12q4.76 0 5.95-4.76-1.785 2.38-4.165 1.785c-.906-.226-1.552-.883-2.27-1.61C16.3 6.23 14.95 4.86 12 4.86M6.05 12Q1.29 12 .1 16.76q1.785-2.38 4.165-1.785c.905.226 1.552.883 2.269 1.61C7.7 17.77 9.05 19.14 12 19.14q4.76 0 5.95-4.76-1.785 2.38-4.165 1.785c-.906-.226-1.552-.883-2.27-1.61C10.35 13.37 9 12 6.05 12"/>
</Svg>);
});
Icon.displayName = 'TailwindCssFill';
/**
* Remix Icon: Tailwind Css Fill
* @see {@link https://remixicon.com/icon/tailwind-css-fill Remix Icon Docs}
*/
export const TailwindCssFill = Icon;