design-react-kit
Version:
Componenti React per Bootstrap 5
11 lines • 555 B
JavaScript
import React from 'react';
import classNames from 'classnames';
export const MegamenuFooter = ({ className, children, vertical, ...attributes }) => {
const classes = classNames(className, `it-footer-link-wrapper${vertical ? '-vertical' : ''}`);
return (React.createElement("div", { className: classes, ...attributes }, children));
};
const Item = ({ href, children }) => {
return (React.createElement("a", { href: href || '#', className: 'it-footer-link' }, children));
};
MegamenuFooter.Item = Item;
//# sourceMappingURL=MegamenuFooter.js.map