onecart-ui
Version:
OneCart UI: Cross-platform design tokens + React & React Native components
10 lines (9 loc) • 918 B
JavaScript
import React from 'react';
import { Svg, Path } from 'react-native-svg';
export const FileDownloadOff = ({ 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: "M17.655 13.649V14.828H18.201V16.873L16.316 14.988ZM13.875 12.556L15.374 11.058L14.045 9.729L12.546 11.218L13.875 12.556ZM11.604 10.275V3.122H11.057V7.052L12.942 8.937ZM20.661 19.323L18.984 17.645L3.338 2.000L2.000 3.329L7.834 9.163L7.287 9.719L12.000 14.432L12.556 13.875L14.988 16.317H6.345V13.489H4.460V16.317C4.460 17.353 5.308 18.202 6.345 18.202H16.873L17.994 22.000L19.323 20.662Z", fill: color })));
};
FileDownloadOff.displayName = 'FileDownloadOff';