@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 823 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="M9.973 18h4.054c.132-1.202.745-2.193 1.74-3.277.113-.122.832-.867.917-.973a6 6 0 1 0-9.37-.002c.086.107.807.853.918.974.996 1.084 1.609 2.076 1.741 3.278M14 20h-4v1h4zm-8.246-5a8 8 0 1 1 12.49.002C17.624 15.774 16 17 16 18.5V21a2 2 0 0 1-2 2h-4a2 2 0 0 1-2-2v-2.5C8 17 6.375 15.774 5.754 15M13 10.004h2.5l-4.5 6v-4H8.5L13 6z"/>
</Svg>);
});
Icon.displayName = 'LightbulbFlashLine';
/**
* Remix Icon: Lightbulb Flash Line
* @see {@link https://remixicon.com/icon/lightbulb-flash-line Remix Icon Docs}
*/
export const LightbulbFlashLine = Icon;