UNPKG

@drivy/cobalt

Version:

Opinionated design system for Drivy's projects.

14 lines (13 loc) 490 B
import { jsx } from "react/jsx-runtime"; import classnames from "classnames"; const Note = ({ children, fullWidth = false, className, isError = false })=>/*#__PURE__*/ jsx("div", { className: classnames("cobalt-Note", className, { "cobalt-Note--fullWidth": fullWidth, "cobalt-Note--error": isError }), children: children }); const components_Note = Note; export default components_Note; export { Note }; //# sourceMappingURL=index.js.map