users/ryan/modules/simple-bar/simple-bar-source/lib/components/icons/library/youtube-music.jsx
592f73c2672474c09dedc5cac8e6fa857a7df92b
· 512 B · 13 lines
raw
| 1 | import Icon from "../icon.jsx"; |
| 2 | |
| 3 | export default function YoutubeMusic(props) { |
| 4 | return ( |
| 5 | <Icon {...props}> |
| 6 | <path |
| 7 | fillRule="evenodd" |
| 8 | d="M12 24c6.627 0 12-5.373 12-12S18.627 0 12 0 0 5.373 0 12s5.373 12 12 12Zm0-17.727A5.735 5.735 0 0 1 17.727 12 5.727 5.727 0 0 1 12 17.727 5.727 5.727 0 0 1 6.273 12 5.735 5.735 0 0 1 12 6.273Zm0-.546a6.274 6.274 0 0 0 0 12.546 6.274 6.274 0 0 0 0-12.546Zm3.136 6.137-5.318 3.272V8.864l5.318 3Z" |
| 9 | clipRule="evenodd" |
| 10 | /> |
| 11 | </Icon> |
| 12 | ); |
| 13 | } |