website-session-kit
Version:
A modular and extensible session management toolkit for modern websites.
7 lines (6 loc) • 302 B
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
const defaultColor = "bg-[#e16a3d]";
const Line = ({ margins = "mt-3 mb-4", width = "w-[45px]", height = "h-[2px]", color = defaultColor }) => {
return (_jsx("div", { className: ` ${margins} ${width} ${height} ${color}` }));
};
export default Line;