@aioha/react-ui
Version:
Ready-made React modal for Aioha
6 lines (5 loc) • 636 B
JavaScript
import React from 'react';
export const EditIcon = ({ size = 6 }) => {
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", width: "24", height: "24", fill: "none", viewBox: "0 0 24 24" },
React.createElement("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "1.5", d: "m14.304 4.844 2.852 2.852M7 7H4a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1h11a1 1 0 0 0 1-1v-4.5m2.409-9.91a2.017 2.017 0 0 1 0 2.853l-6.844 6.844L8 14l.713-3.565 6.844-6.844a2.015 2.015 0 0 1 2.852 0Z" })));
};