@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 840 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="M17.8492 11.805L17.1421 11.0979L7.24264 20.9974H3V16.7547L14.3137 5.44101L19.9706 11.0979C20.3611 11.4884 20.3611 12.1216 19.9706 12.5121L12.8995 19.5831L11.4853 18.1689L17.8492 11.805ZM18.5563 2.61258L21.3848 5.44101C21.7753 5.83153 21.7753 6.4647 21.3848 6.85522L19.9706 8.26943L15.7279 4.02679L17.1421 2.61258C17.5327 2.22206 18.1658 2.22206 18.5563 2.61258Z"/>
</Svg>);
};
Icon.displayName = 'BallPenFill';
/**
* Remix Icon: Ball Pen Fill
* @see {@link https://remixicon.com/icon/ball-pen-fill Remix Icon Docs}
*/
export const BallPenFill = memo(Icon);