UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

15 lines (14 loc) 915 B
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="M2.913 11.674C3.236 10.195 3.54 8.808 2 6.5l3.5-4S9 4 12 1.5c3 2.5 6.5 1 6.5 1l3.5 4c-1.539 2.308-1.236 3.695-.913 5.174.306 1.404.63 2.89-.587 5.326-1.157 2.315-3.152 3.123-5.015 3.877-1.356.55-2.642 1.07-3.485 2.123-.842-1.053-2.129-1.574-3.485-2.123C6.652 20.123 4.658 19.315 3.5 17c-1.218-2.435-.893-3.922-.587-5.326m11.465 1.099 2.377-2.318-3.286-.478L12 7 10.53 9.977l-3.285.478 2.377 2.318-.561 3.272L12 14.5l2.939 1.545z"/> </Svg>); }); Icon.displayName = 'PoliceBadgeFill'; /** * Remix Icon: Police Badge Fill * @see {@link https://remixicon.com/icon/police-badge-fill Remix Icon Docs} */ export const PoliceBadgeFill = Icon;