aura-glass
Version:
A comprehensive glassmorphism design system for React applications with 142+ production-ready components
38 lines (35 loc) • 676 B
JavaScript
'use client';
import { jsxs, jsx } from 'react/jsx-runtime';
const ClearIcon = ({
size = 16,
color = 'currentColor',
className,
onClick
}) => jsxs("svg", {
width: size,
height: size,
viewBox: "0 0 24 24",
fill: "none",
stroke: color,
strokeWidth: "2",
strokeLinecap: "round",
strokeLinejoin: "round",
className: className,
onClick: onClick,
style: {
cursor: onClick ? 'pointer' : 'default'
},
children: [jsx("line", {
x1: "18",
y1: "6",
x2: "6",
y2: "18"
}), jsx("line", {
x1: "6",
y1: "6",
x2: "18",
y2: "18"
})]
});
export { ClearIcon, ClearIcon as default };
//# sourceMappingURL=ClearIcon.js.map