@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 747 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="M18.001 20.003v-5.334h2v7.334h-16v-7.334h2v5.334zM7.6 14.736l.313-1.98 8.837 1.7-.113 1.586zm1.2-4.532.732-1.6 7.998 3.733-.733 1.6zm2.265-3.932 1.133-1.333 6.798 5.665-1.133 1.333zm4.332-4.132 5.265 7.064-1.4 1.067-5.264-7.065zM7.333 18.668v-2h9.33v2z"/>
</Svg>);
});
Icon.displayName = 'StackOverflowFill';
/**
* Remix Icon: Stack Overflow Fill
* @see {@link https://remixicon.com/icon/stack-overflow-fill Remix Icon Docs}
*/
export const StackOverflowFill = Icon;