@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 697 B
JavaScript
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="M6 9a3 3 0 1 0 0 6 3 3 0 0 0 0-6m-5 3a5 5 0 0 1 8.192-3.848A3.99 3.99 0 0 1 12 7c1.095 0 2.086.44 2.808 1.152a5 5 0 1 1-1.264 1.578A2 2 0 0 0 12 9c-.62 0-1.177.283-1.544.73A5 5 0 1 1 1 12m17-3a2.996 2.996 0 0 0-3 3 3 3 0 1 0 3-3"/>
</Svg>);
});
Icon.displayName = 'GlassesLine';
/**
* Remix Icon: Glasses Line
* @see {@link https://remixicon.com/icon/glasses-line Remix Icon Docs}
*/
export const GlassesLine = Icon;