UNPKG

onecart-ui

Version:

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

10 lines (9 loc) 783 B
import React from 'react'; import { Svg, Path } from 'react-native-svg'; export const Folder = ({ 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: "M9.170 4.000L11.170 6.000H20.000V16.000H4.000V4.000H9.170ZM8.000 4.000H2.000C2.900 2.000 2.010 2.900 2.010 4.000L2.000 16.000C2.000 17.100 2.900 18.000 4.000 18.000H20.000C19.100 20.000 20.000 19.100 20.000 18.000V6.000C22.000 4.900 21.100 4.000 20.000 4.000H12.000L8.000 4.000Z", fill: color }))); }; Folder.displayName = 'Folder';