tailwind-joy
Version:
React component library that styles the components of Joy UI in the Tailwind CSS way.
12 lines (11 loc) • 508 B
TypeScript
import type { ComponentProps } from 'react';
import type { BaseVariants, GeneratorInput } from '../base/types';
interface IconAdapterRootVariants extends Pick<BaseVariants, 'color' | 'size'> {
}
type IconAdapterRootProps = Pick<ComponentProps<'svg'>, 'children'> & IconAdapterRootVariants;
/**
* @deprecated
*/
export declare function IconAdapter({ children, color, size, }: IconAdapterRootProps): import("react/jsx-runtime").JSX.Element;
export declare const generatorInputs: GeneratorInput[];
export {};