UNPKG

@vertisanpro/flowbite-react

Version:

Non-Official React components built for Flowbite and Tailwind CSS

9 lines (8 loc) 467 B
import { twMerge } from '@vertisanpro/tailwind-merge'; import React from 'react'; import { mergeDeep } from '../../helpers/merge-deep'; import { getTheme } from '../../theme-store'; export const FooterDivider = ({ className, theme: customTheme = {}, ...props }) => { const theme = mergeDeep(getTheme().footer.divider, customTheme); return React.createElement("hr", { "data-testid": "footer-divider", className: twMerge(theme.base, className), ...props }); };