onecart-ui
Version:
OneCart UI: Cross-platform design tokens + React & React Native components
9 lines (8 loc) • 1.04 kB
JavaScript
import React from 'react';
export const MoreHoriz = ({ 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: "M4.500 2.000C3.125 2.000 2.000 3.125 2.000 4.500C2.000 5.875 3.125 7.000 4.500 7.000C5.875 7.000 7.000 5.875 7.000 4.500C7.000 3.125 5.875 2.000 4.500 2.000ZM19.500 2.000C18.125 2.000 17.000 3.125 17.000 4.500C17.000 5.875 18.125 7.000 19.500 7.000C20.875 7.000 22.000 5.875 22.000 4.500C22.000 3.125 20.875 2.000 19.500 2.000ZM12.000 2.000C10.625 2.000 9.500 3.125 9.500 4.500C9.500 5.875 10.625 7.000 12.000 7.000C13.375 7.000 14.500 5.875 14.500 4.500C14.500 3.125 13.375 2.000 12.000 2.000Z", fill: color })));
};
MoreHoriz.displayName = 'MoreHoriz';