onecart-ui
Version:
OneCart UI: Cross-platform design tokens + React & React Native components
10 lines (9 loc) • 964 B
JavaScript
import React from 'react';
import { Svg, Path } from 'react-native-svg';
export const Blinds = ({ 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: "M19.000 19.000V2.000H4.000V18.000H2.000V20.000H22.000V18.000H20.000ZM15.000 9.000H17.000V11.000H15.000V9.000ZM13.000 11.000H5.000V9.000H13.000V11.000ZM17.000 7.000H15.000V5.000H17.000V7.000ZM13.000 5.000V6.000H6.000V4.000H14.000ZM5.000 19.000V12.000H14.000V13.820C13.550 14.140 13.250 14.660 13.250 15.250C13.250 16.220 14.030 17.000 15.000 17.000C15.970 17.000 16.750 16.220 16.750 15.250C16.750 14.660 16.450 14.130 16.000 13.820V13.000H17.000V19.000H5.000Z", fill: color })));
};
Blinds.displayName = 'Blinds';