UNPKG

@transkripid/flowbite-react

Version:

Official React components built for Flowbite and Tailwind CSS - Transkrip.id fork

15 lines (14 loc) 427 B
import type { ComponentProps, FC } from 'react'; import type { DeepPartial } from '../../types'; export interface FlowbiteKbdTheme { root: FlowbiteKbdRootTheme; } export interface FlowbiteKbdRootTheme { base: string; icon: string; } export interface KbdProps extends ComponentProps<'span'> { icon?: FC<ComponentProps<'svg'>>; theme?: DeepPartial<FlowbiteKbdTheme>; } export declare const Kbd: FC<KbdProps>;