UNPKG

onecart-ui

Version:

OneCart UI: Cross-platform design tokens + React & React Native components

9 lines (8 loc) 879 B
import React from 'react'; export const Facebook = ({ size = 'md', color = 'currentColor', className, style, }) => { const sizeMap = { xs: 16, sm: 20, md: 24, lg: 32, xl: 40 }; const iconSize = typeof size === 'number' ? size : sizeMap[size]; return (React.createElement("svg", { width: iconSize, height: iconSize, viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", className: className, style: style }, React.createElement("path", { d: "M22.000 12.000C22.000 6.480 17.520 2.000 12.000 2.000C6.480 2.000 2.000 6.480 2.000 12.000C2.000 16.840 5.440 20.870 10.000 21.800V15.000H8.000V12.000H10.000V9.500C10.000 7.570 11.570 6.000 13.500 6.000H16.000V9.000H14.000C13.450 9.000 13.000 9.450 13.000 10.000V12.000H16.000V15.000H13.000V21.950C18.050 21.450 22.000 17.190 22.000 12.000Z", fill: color }))); }; Facebook.displayName = 'Facebook';