@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 585 B
JavaScript
import { memo } from 'react';
import { Svg, Path } from 'react-native-svg';
const Icon = (props) => {
const { color = 'black', size = 24, ...otherProps } = props;
return (<Svg viewBox="0 0 24 24" fill={color} height={size} width={size} {...otherProps}>
<Path d="M15.2459 18H8.75407L7.15407 22H5L11 7H13L19 22H16.8459L15.2459 18ZM14.4459 16L12 9.88516L9.55407 16H14.4459ZM4 3H20V5H4V3Z"/>
</Svg>);
};
Icon.displayName = 'Overline';
/**
* Remix Icon: Overline
* @see {@link https://remixicon.com/icon/overline Remix Icon Docs}
*/
export const Overline = memo(Icon);