onecart-ui
Version:
OneCart UI: Cross-platform design tokens + React & React Native components
10 lines (9 loc) • 728 B
JavaScript
import React from 'react';
import { Svg, Path } from 'react-native-svg';
export const BookmarkRemove = ({ 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.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';