@aioha/react-ui
Version:
Ready-made React modal for Aioha
6 lines (5 loc) • 455 B
JavaScript
import React from 'react';
export const PlusIcon = ({ size = 6, ...props }) => {
return (React.createElement("svg", { className: `w-${size} h-${size} text-gray-800 dark:text-white`, "aria-hidden": "true", xmlns: "http://www.w3.org/2000/svg", fill: "none", viewBox: "0 0 24 24", ...props },
React.createElement("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "1.5", d: "M5 12h14m-7 7V5" })));
};