nexpi-ui
Version:
An elegant and minimalist Next.js 14 component library
9 lines • 398 B
JavaScript
import { __assign, __rest } from "tslib";
import styles from './styles/Separator.module.css';
import React from 'react';
var Separator = function (_a) {
var style = _a.style, props = __rest(_a, ["style"]);
return React.createElement("hr", __assign({ className: styles.hr, style: __assign({ flexGrow: 1 }, style) }, props));
};
export default Separator;
//# sourceMappingURL=Separator.js.map