UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

15 lines (14 loc) 642 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="M11 2c4.968 0 9 4.032 9 9s-4.032 9-9 9-9-4.032-9-9 4.032-9 9-9m0 16c3.867 0 7-3.133 7-7s-3.133-7-7-7-7 3.133-7 7 3.133 7 7 7m8.485.071 2.829 2.828-1.415 1.415-2.828-2.829z"/> </Svg>); }); Icon.displayName = 'Search2Line'; /** * Remix Icon: Search 2 Line * @see {@link https://remixicon.com/icon/search-2-line Remix Icon Docs} */ export const Search2Line = Icon;