UNPKG

onecart-ui

Version:

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

10 lines (9 loc) 1.34 kB
import React from 'react'; export const MarkEmailRead = ({ 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.238 3.905H2.000C2.857 2.000 2.010 2.857 2.010 3.905L2.000 15.333C2.000 16.381 2.857 17.238 3.905 17.238H11.524V15.333H3.905V5.810L11.524 10.571L19.143 5.810V12.476H19.143V5.810C19.143 4.762 18.286 3.905 17.238 3.905ZM9.619 10.571L2.000 5.810H17.238L11.524 8.667ZM16.610 19.143L13.238 15.771L14.581 14.429L16.600 16.448L20.638 12.410L22.000 13.752L16.610 19.143Z", fill: color }), React.createElement("path", { d: "M5.810 18.190H2.000C2.214 17.714 2.002 17.929 2.002 18.191L2.000 21.048C2.000 21.310 2.214 21.524 2.476 21.524H4.381V21.048H2.476V18.667L4.381 19.857L6.286 18.667V20.333H6.286V18.667C6.286 18.405 6.071 18.190 5.810 18.190ZM3.905 19.857L2.000 18.667H5.810L4.381 19.381ZM5.652 22.000L4.809 21.157L5.145 20.821L5.650 21.326L6.659 20.317L7.000 20.652L5.652 22.000Z", fill: color }))); }; MarkEmailRead.displayName = 'MarkEmailRead';