@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 657 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="M18 18v3a1 1 0 0 1-1 1H7a1 1 0 0 1-1-1v-3H3a1 1 0 0 1-1-1v-5C2 6.477 6.477 2 12 2s10 4.477 10 10v5a1 1 0 0 1-1 1zM7.5 14a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3m9 0a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3"/>
</Svg>);
});
Icon.displayName = 'SkullFill';
/**
* Remix Icon: Skull Fill
* @see {@link https://remixicon.com/icon/skull-fill Remix Icon Docs}
*/
export const SkullFill = Icon;