UNPKG

onecart-ui

Version:

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

9 lines (8 loc) 960 B
import React from 'react'; export const Grade = ({ 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: "M12.000 7.130L12.970 9.420L13.440 10.530L14.640 10.630L17.110 10.840L15.230 12.470L14.320 13.260L14.590 14.440L15.150 16.850L13.030 15.570L12.000 14.930L10.970 15.550L8.850 16.830L9.410 14.420L9.680 13.240L8.770 12.450L6.890 10.820L9.360 10.610L10.560 10.510L11.030 9.400L12.000 7.130ZM12.000 2.000L9.190 8.630L2.000 9.240L7.460 13.970L5.820 21.000L12.000 17.270L18.180 21.000L16.540 13.970L22.000 9.240L14.810 8.630L12.000 2.000Z", fill: color }))); }; Grade.displayName = 'Grade';