@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
14 lines (13 loc) • 531 B
JavaScript
import { memo } from 'react';
import Svg, { Path } from 'react-native-svg';
const Overline = /* @__PURE__ */ memo(function Overline(_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>);
});
/**
* Remix Icon: Overline
* @see {@link https://remixicon.com/icon/overline Remix Icon Docs}
*/
export { Overline };