@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 649 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="M5 3a4 4 0 0 0-2 7.465V19a3 3 0 0 0 3 3h12a3 3 0 0 0 3-3v-8.535A4 4 0 0 0 19 3zm2 17a1 1 0 0 1-1-1V9.122l-.667-.236A2.001 2.001 0 0 1 6 5h13a2 2 0 0 1 .667 3.886L19 9.122V19a1 1 0 0 1-1 1z"/>
</Svg>);
});
Icon.displayName = 'BreadLine';
/**
* Remix Icon: Bread Line
* @see {@link https://remixicon.com/icon/bread-line Remix Icon Docs}
*/
export const BreadLine = Icon;