UNPKG

onecart-ui

Version:

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

12 lines (11 loc) 1.55 kB
import React from 'react'; export const ReportOff = ({ 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: "M8.778 3.333H15.222L18.889 8.778V14.333L19.533 14.578L21.111 16.144L22.000 15.256V7.856L15.256 2.000H6.967L6.967 2.000L8.533 3.578L8.778 3.333Z", fill: color }), React.createElement("path", { d: "M12.663 9.778V7.061H11.337V7.369L13.204 9.236ZM3.317 2.000L2.000 3.317L5.399 6.715L3.867 8.246V15.754L8.246 20.674H15.212L17.285 18.601L20.683 22.000L22.000 20.683L3.317 2.000ZM14.979 18.265H9.563L5.193 14.979V9.021L6.715 8.041L15.959 17.285L14.979 18.265Z", fill: color }), React.createElement("path", { d: "M12.000 22.000C17.522 22.000 22.000 17.522 22.000 12.000C22.000 6.478 17.522 2.000 12.000 2.000C6.478 2.000 2.000 6.478 2.000 12.000C2.000 17.522 6.478 22.000 12.000 22.000Z", fill: color }), React.createElement("path", { d: "M3.860 19.286V17.814H4.326V17.891L4.791 18.356ZM2.328 16.553L2.000 16.881L2.847 17.728L2.465 18.109V20.774L2.760 22.000H4.495L5.807 20.688L6.653 21.535L6.981 21.207L2.328 16.553ZM5.233 20.605H3.884L2.000 20.581V18.302L3.174 18.058L5.477 20.360L5.233 20.605Z", fill: color }))); }; ReportOff.displayName = 'ReportOff';