@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
14 lines (13 loc) • 720 B
JavaScript
import { memo } from 'react';
import Svg, { Path } from 'react-native-svg';
const BallPenLine = /* @__PURE__ */ memo(function BallPenLine(_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.698-.708-.707-9.9 9.9H3v-4.243L14.314 5.334l5.657 5.657a1 1 0 0 1 0 1.414L12.9 19.477l-1.415-1.415zm-2.122-2.121-1.414-1.414L5 17.477v1.414h1.414zm2.828-7.071 2.829 2.828a1 1 0 0 1 0 1.415L19.97 8.163 15.728 3.92l1.414-1.414a1 1 0 0 1 1.414 0"/>
</Svg>);
});
/**
* Remix Icon: Ball Pen Line
* @see {@link https://remixicon.com/icon/ball-pen-line Remix Icon Docs}
*/
export { BallPenLine };