@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 740 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 4a1 1 0 0 1 1 1v4.2l5.213-3.65a.5.5 0 0 1 .787.41v12.08a.5.5 0 0 1-.787.41L17 14.8V19a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V5a1 1 0 0 1 1-1zM7.4 8.829a.4.4 0 0 0-.392.32L7 9.228v5.542a.4.4 0 0 0 .542.374l.073-.036 4.355-2.771a.4.4 0 0 0 .063-.625l-.063-.05L7.615 8.89A.4.4 0 0 0 7.4 8.83"/>
</Svg>);
});
Icon.displayName = 'LiveFill';
/**
* Remix Icon: Live Fill
* @see {@link https://remixicon.com/icon/live-fill Remix Icon Docs}
*/
export const LiveFill = Icon;