users/ryan/modules/simple-bar/simple-bar-source/lib/components/icons/library/italic.jsx
b43dfa30df8d9ac27491b6df6ec6b84f9afc8761
· 347 B · 9 lines
raw
| 1 | import Icon from "../icon.jsx"; |
| 2 | |
| 3 | export default function Italic(props) { |
| 4 | return ( |
| 5 | <Icon {...props}> |
| 6 | <path d="M10 5.5c0 .83.67 1.5 1.5 1.5h.71l-3.42 8H7.5c-.83 0-1.5.67-1.5 1.5S6.67 18 7.5 18h5c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5h-.71l3.42-8h1.29c.83 0 1.5-.67 1.5-1.5S17.33 4 16.5 4h-5c-.83 0-1.5.67-1.5 1.5z" /> |
| 7 | </Icon> |
| 8 | ); |
| 9 | } |