UNPKG

onecart-ui

Version:

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

10 lines (9 loc) 902 B
import React from 'react'; import { Svg, Path } from 'react-native-svg'; export const WorkOutline = ({ size = 'md', color = 'currentColor', 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", style: style }, React.createElement(Path, { d: "M14.000 6.000V4.000H10.000V6.000H14.000ZM4.000 8.000V19.000H20.000V8.000H4.000ZM20.000 6.000C21.110 6.000 22.000 6.890 22.000 8.000V19.000C22.000 20.110 21.110 21.000 20.000 21.000H4.000C2.890 21.000 2.000 20.110 2.000 19.000L2.010 8.000C2.010 6.890 2.890 6.000 4.000 6.000H8.000V4.000C8.000 2.890 8.890 2.000 10.000 2.000H14.000C15.110 2.000 16.000 2.890 16.000 4.000V6.000H20.000Z", fill: color }))); }; WorkOutline.displayName = 'WorkOutline';