UNPKG

onecart-ui

Version:

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

9 lines (8 loc) 756 B
import React from 'react'; export const BookmarkRemove = ({ 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.556 10.889V18.633L12.000 16.256L6.444 18.633V4.222H13.111V2.000H6.444C5.222 2.000 4.222 3.000 4.222 4.222V22.000L12.000 18.667L19.778 22.000V10.889H17.556ZM22.000 6.444H15.333V4.222H22.000V6.444Z", fill: color }))); }; BookmarkRemove.displayName = 'BookmarkRemove';