@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 660 B
JavaScript
import { memo } from 'react';
import { Svg, Path } from 'react-native-svg';
const Icon = (props) => {
const { color = 'black', size = 24, ...otherProps } = props;
return (<Svg viewBox="0 0 24 24" fill={color} height={size} width={size} {...otherProps}>
<Path d="M11 2C15.968 2 20 6.032 20 11C20 15.968 15.968 20 11 20C6.032 20 2 15.968 2 11C2 6.032 6.032 2 11 2ZM19.4853 18.0711L22.3137 20.8995L20.8995 22.3137L18.0711 19.4853L19.4853 18.0711Z"/>
</Svg>);
};
Icon.displayName = 'Search2Fill';
/**
* Remix Icon: Search 2 Fill
* @see {@link https://remixicon.com/icon/search-2-fill Remix Icon Docs}
*/
export const Search2Fill = memo(Icon);