UNPKG

onecart-ui

Version:

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

10 lines (9 loc) 939 B
import React from 'react'; export const FilterAltOff = ({ 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: "M17.315 4.797L12.322 11.161L14.322 13.161C15.762 11.329 21.287 4.252 21.287 4.252C22.000 3.329 21.343 2.000 20.182 2.000H3.161L8.755 2.000H20.112Z", fill: color }), React.createElement("path", { d: "M3.338 2.000L2.000 3.329L10.115 11.604V18.598C8.777 19.116 9.201 19.540 9.719 19.540H11.604C13.461 18.202 13.885 17.778 13.885 17.259V16.552L17.994 22.000L19.323 20.671L2.000 3.339Z", fill: color }))); }; FilterAltOff.displayName = 'FilterAltOff';