@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 674 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="m17.85 11.805-.708-.707-9.9 9.9H3v-4.243L14.314 5.44l5.657 5.657a1 1 0 0 1 0 1.414L12.9 19.583l-1.415-1.414zm.706-9.192 2.829 2.828a1 1 0 0 1 0 1.414L19.97 8.27l-4.243-4.242 1.414-1.414a1 1 0 0 1 1.414 0"/>
</Svg>);
});
Icon.displayName = 'BallPenFill';
/**
* Remix Icon: Ball Pen Fill
* @see {@link https://remixicon.com/icon/ball-pen-fill Remix Icon Docs}
*/
export const BallPenFill = Icon;