@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 713 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="M6.19983 14H8.3539L9.55389 11H14.4458L15.6458 14H17.7998L12.9998 2H10.9998L6.19983 14ZM11.9998 4.88517 13.6458 9H10.3539L11.9998 4.88517ZM3 16V22L5 22 4.99992 20H18.9999L19 22 21 22 20.9999 16H18.9999V18H4.99992L5 16 3 16Z"/>
</Svg>);
};
Icon.displayName = 'LetterSpacing2';
/**
* Remix Icon: Letter Spacing 2
* @see {@link https://remixicon.com/icon/letter-spacing-2 Remix Icon Docs}
*/
export const LetterSpacing2 = memo(Icon);