@scientist-softserv/webstore-component-library
Version:
A React component library intended for use with WebStore applications
17 lines (14 loc) • 1.4 kB
JSX
import * as React from 'react'
const YouTube = ({ height, fill }) => (
<svg
xmlns='http://www.w3.org/2000/svg'
viewBox='0 0 512 512'
width={height}
height={height}
fill={fill}
>
<path d='M238 0h36c8.05 1.08 16.13 1.91 24.13 3.29 46.41 8.02 87.84 26.93 123.61 57.66 46.49 39.94 75.49 90.06 86.34 150.49 1.58 8.8 2.63 17.71 3.92 26.56v36c-1.1 8.04-1.94 16.13-3.34 24.13-9.98 57.11-35.95 105.73-78.35 145.28-36.67 34.21-79.83 55.83-129.28 64.62-8.96 1.59-18.02 2.66-27.03 3.97h-36c-5.74-.74-11.49-1.41-17.21-2.25-50.32-7.39-94.98-27.34-133.18-61.01-44.84-39.52-72.95-88.73-83.62-147.67C2.36 292.1 1.31 283.02 0 274v-36c.74-5.75 1.4-11.51 2.24-17.25 7.27-49.8 26.94-94.07 60.03-132.03 39.76-45.62 89.46-74.14 149.18-84.78C220.25 2.37 229.15 1.3 238 0Zm10.31 143.05c-31.4 1.71-69.65 3.42-107.84 6.03-21.19 1.45-35.01 13.73-38.52 34.76-2.92 17.5-4.16 35.34-5.21 53.08-1.75 29.5-.21 58.93 4.29 88.15 3.08 20.04 14.25 32.53 32.5 36.53 5.67 1.24 11.49 2.1 17.28 2.41 23.94 1.31 47.88 2.77 71.84 3.38 49.81 1.28 99.59.71 149.22-4.38 21.01-2.16 34.81-13.79 38.17-34.57 2.97-18.34 4.36-37 5.35-55.57 1.53-28.65.24-57.27-4.33-85.65-3.55-22.03-14.89-33.66-36.68-37.54-7.19-1.28-14.5-2.27-21.79-2.59-32.44-1.42-64.9-2.54-104.27-4.04Z' />
<path d='M224.37 208.07c27.86 16.05 55.15 31.76 83.21 47.93-28.06 16.16-55.35 31.88-83.21 47.93v-95.85Z' />
</svg>
)
export default YouTube