UNPKG

flowbite-react

Version:

Official React components built for Flowbite and Tailwind CSS

10 lines (9 loc) 422 B
import type { WithoutThemingProps } from "../types"; /** * Removes theming properties (theme, clearTheme, applyTheme) * * @template T - The type of the object * @param {T} props - The object to remove theming properties from * @returns {WithoutThemingProps<T>} The object without theming properties (theme, clearTheme, applyTheme) */ export declare function withoutThemingProps<T>(props: T): WithoutThemingProps<T>;