UNPKG

onecart-ui

Version:

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

9 lines (8 loc) 821 B
import React from 'react'; export const FilterListOff = ({ 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: "M11.540 7.245H21.818V5.224H9.519L10.105 8.680ZM15.158 13.733H17.351V11.712H13.137L16.593 12.298ZM14.744 16.169V18.786H9.266V16.765H12.470L10.873 12.298H6.659V10.277H8.852L4.385 8.680H2.192V6.659H2.364L2.000 3.425L3.425 2.000L22.000 20.575L20.575 22.000L14.744 16.169Z", fill: color }))); }; FilterListOff.displayName = 'FilterListOff';