IconYoutubeSolid.tsx17 lines · main
1// @ts-ignore
2import IconBase from '../../IconBase'
3
4const src = (
5 <path
6 fillRule="evenodd"
7 clipRule="evenodd"
8 d="M15.6657 4.13526C15.4817 3.44239 14.9395 2.8967 14.2511 2.71152C13.0033 2.37502 8 2.37502 8 2.37502C8 2.37502 2.99669 2.37502 1.74891 2.71152C1.06052 2.89673 0.518351 3.44239 0.334337 4.13526C1.90735e-06 5.39112 1.90735e-06 8.01137 1.90735e-06 8.01137C1.90735e-06 8.01137 1.90735e-06 10.6316 0.334337 11.8875C0.518351 12.5804 1.06052 13.1033 1.74891 13.2885C2.99669 13.625 8 13.625 8 13.625C8 13.625 13.0033 13.625 14.2511 13.2885C14.9395 13.1033 15.4817 12.5804 15.6657 11.8875C16 10.6316 16 8.01137 16 8.01137C16 8.01137 16 5.39112 15.6657 4.13526ZM6.36363 10.3904V5.63238L10.5454 8.01143L6.36363 10.3904Z"
9 fill="currentColor"
10 />
11)
12
13function IconYoutubeSolid(props: any) {
14 return <IconBase src={src} stroke="none" {...props} />
15}
16
17export default IconYoutubeSolid