UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

15 lines (14 loc) 759 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="M12.684 4.025a8 8 0 1 0 7.287 7.287 8 8 0 0 0-.603-2.439l1.5-1.502A9.94 9.94 0 0 1 22 11.997c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10q.378 0 .749.027a10 10 0 0 1 3.877 1.104L15.125 4.63a8 8 0 0 0-2.44-.604m7.801-1.928L21.9 3.511l-9.193 9.193-1.412.002-.002-1.416z"/> </Svg>); }); Icon.displayName = 'EditCircleLine'; /** * Remix Icon: Edit Circle Line * @see {@link https://remixicon.com/icon/edit-circle-line Remix Icon Docs} */ export const EditCircleLine = Icon;