@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 537 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="M15.246 18H8.754l-1.6 4H5l6-15h2l6 15h-2.154zm-.8-2L12 9.885 9.554 16zM4 3h16v2H4z"/>
</Svg>);
});
Icon.displayName = 'Overline';
/**
* Remix Icon: Overline
* @see {@link https://remixicon.com/icon/overline Remix Icon Docs}
*/
export const Overline = Icon;