users/ryan/modules/simple-bar/simple-bar-source/lib/components/icons/library/cursor.jsx
1e8ce6189d196b8d75f9c15bec198ef4fa7a339b
· 490 B · 9 lines
raw
| 1 | import Icon from "../icon.jsx"; |
| 2 | |
| 3 | export default function Cursor(props) { |
| 4 | return ( |
| 5 | <Icon {...props}> |
| 6 | <path d="M22.106 5.68L12.5.135a.998.998 0 00-.998 0L1.893 5.68a.84.84 0 00-.419.726v11.186c0 .3.16.577.42.727l9.607 5.547a.999.999 0 00.998 0l9.608-5.547a.84.84 0 00.42-.727V6.407a.84.84 0 00-.42-.726zm-.603 1.176L12.228 22.92c-.063.108-.228.064-.228-.061V12.34a.59.59 0 00-.295-.51l-9.11-5.26c-.107-.062-.063-.228.062-.228h18.55c.264 0 .428.286.296.514z" /> |
| 7 | </Icon> |
| 8 | ); |
| 9 | } |