@scientist-softserv/webstore-component-library
Version:
A React component library intended for use with WebStore applications
16 lines (13 loc) • 1.2 kB
JSX
import * as React from 'react'
const FaceBook = ({ 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.21 1.12 16.46 1.97 24.61 3.4 47.27 8.28 89.27 27.89 125.34 59.59 45.03 39.58 73.3 88.87 84.05 147.98 1.63 8.96 2.69 18.02 4.01 27.03v36c-.75 5.74-1.42 11.49-2.26 17.21-7.34 49.97-27.18 94.32-60.44 132.37-39.58 45.27-89.01 73.61-148.28 84.43-8.95 1.63-18.01 2.68-27.02 3.99h-36c-5.9-.78-11.81-1.47-17.69-2.34-50.49-7.5-95.18-27.76-133.37-61.66C42.53 408.58 14.67 359.6 4 301.06c-1.64-8.97-2.68-18.04-4-27.06v-36c1.14-8.21 2.02-16.46 3.45-24.62 9.2-52.61 32.31-98.22 69.72-136.33 38.15-38.87 84.09-63.4 137.8-73.04C219.93 2.4 228.99 1.32 238 0Zm-21.51 265.03v147.84h61.69V264.83h41.4c1.79-17.47 3.54-34.46 5.35-52.1h-46.82c0-11.75-.24-22.88.1-34 .18-5.96 3.93-9.93 9.88-10.89 4.23-.68 8.61-.53 12.93-.57 7.59-.08 15.18-.02 23.11-.02v-47.14c0-.96-.14-1.92-.23-3-.89-.17-1.51-.39-2.14-.38-16.99.03-33.99-.44-50.95.25-27.96 1.13-48.66 19.17-52.66 46.88-2.03 14.07-1.28 28.54-1.8 42.83-.07 1.91-.23 3.82-.38 6.27h-28.63v52.08h29.16Z' />
</svg>
)
export default FaceBook