onecart-ui
Version:
OneCart UI: Cross-platform design tokens + React & React Native components
10 lines (9 loc) • 791 B
JavaScript
import React from 'react';
import { Svg, Path } from 'react-native-svg';
export const MarkChatRead = ({ 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: "M11.524 17.238H5.810L2.000 21.048V3.905C2.000 2.857 2.857 2.000 3.905 2.000H19.143C20.190 2.000 21.048 2.857 21.048 3.905V10.571H19.143V3.905H3.905V15.333H11.524V17.238ZM22.000 13.752L20.657 12.410L16.619 16.448L14.600 14.429L13.257 15.771L16.610 19.143L22.000 13.752Z", fill: color })));
};
MarkChatRead.displayName = 'MarkChatRead';