@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 772 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="M16 2v2h-1v3.243a8 8 0 0 0 .736 3.352l4.281 9.276A1.5 1.5 0 0 1 18.655 22H5.344a1.5 1.5 0 0 1-1.362-2.129l4.281-9.276A8 8 0 0 0 9 7.243V4H8V2zm-2.613 8.001h-2.776q-.156.545-.374 1.071l-.158.362L6.124 20h11.75l-3.954-8.566A10 10 0 0 1 13.387 10M11 7.243q0 .38-.028.758h2.057a10 10 0 0 1-.02-.364l-.009-.394V4h-2z"/>
</Svg>);
});
Icon.displayName = 'FlaskLine';
/**
* Remix Icon: Flask Line
* @see {@link https://remixicon.com/icon/flask-line Remix Icon Docs}
*/
export const FlaskLine = Icon;