@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 675 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="M18.031 16.6168L22.3137 20.8995L20.8995 22.3137L16.6168 18.031C15.0769 19.263 13.124 20 11 20C6.032 20 2 15.968 2 11C2 6.032 6.032 2 11 2C15.968 2 20 6.032 20 11C20 13.124 19.263 15.0769 18.031 16.6168Z"/>
</Svg>);
};
Icon.displayName = 'SearchFill';
/**
* Remix Icon: Search Fill
* @see {@link https://remixicon.com/icon/search-fill Remix Icon Docs}
*/
export const SearchFill = memo(Icon);