design-react-kit
Version:
Componenti React per Bootstrap 5
11 lines • 469 B
JavaScript
import React from 'react';
import classNames from 'classnames';
export const Headers = ({ className, shadow = false, sticky = false, testId, ...attributes }) => {
const classes = classNames('it-header-wrapper', {
'it-shadow': shadow,
'it-header-sticky': sticky,
'sticky-top': sticky
}, className);
return React.createElement("div", { className: classes, ...attributes, "data-testid": testId });
};
//# sourceMappingURL=Headers.js.map