@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 634 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="M14 22.5 11.2 19H6a1 1 0 0 1-1-1V7.103a1 1 0 0 1 1-1h16a1 1 0 0 1 1 1V18a1 1 0 0 1-1 1h-5.2zm1.839-5.5H21V8.103H7V17h5.161L14 19.298zM2 2h17v2H3v11H1V3a1 1 0 0 1 1-1"/>
</Svg>);
});
Icon.displayName = 'DiscussLine';
/**
* Remix Icon: Discuss Line
* @see {@link https://remixicon.com/icon/discuss-line Remix Icon Docs}
*/
export const DiscussLine = Icon;