onecart-ui
Version:
OneCart UI: Cross-platform design tokens + React & React Native components
9 lines (8 loc) • 805 B
JavaScript
import React from 'react';
export const VerticalShadesClosed = ({ 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: "M19.000 19.000V2.000H4.000V18.000H2.000V20.000H22.000V18.000H20.000ZM12.000 5.000H13.500V19.000H12.000V5.000ZM10.000 19.000H8.500V5.000H10.000V19.000ZM5.000 5.000H6.500V19.000H5.000V5.000ZM15.500 19.000V4.000H18.000V18.000H16.500Z", fill: color })));
};
VerticalShadesClosed.displayName = 'VerticalShadesClosed';