flowbite-react
Version:
Official React components built for Flowbite and Tailwind CSS
16 lines (13 loc) • 346 B
JavaScript
import { withoutThemingProps } from './without-theming-props.js';
function resolveProps(props, providerProps) {
let mergedProps = withoutThemingProps(props);
if (providerProps) {
mergedProps = {
...providerProps,
...props
};
}
return mergedProps;
}
export { resolveProps };
//# sourceMappingURL=resolve-props.js.map