aboutsummaryrefslogtreecommitdiff
path: root/users/ryan/modules/simple-bar/simple-bar-source/lib/components/icons/library/youtube-music.jsx
blob: fe7e13003b5bc3ce898e659fe84b6baf25a84cfe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import Icon from "../icon.jsx";

export default function YoutubeMusic(props) {
  return (
    <Icon {...props}>
      <path
        fillRule="evenodd"
        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"
        clipRule="evenodd"
      />
    </Icon>
  );
}