@spicy-ui/core
Version:
A themable and extensible React UI library, ready to use out of the box
7 lines (6 loc) • 332 B
TypeScript
import * as React from 'react';
import { SxProp } from '../../system';
import { AsProp, ChildrenProp, HTMLAttributes } from '../../types';
export interface KbdProps extends HTMLAttributes, AsProp, ChildrenProp, SxProp {
}
export declare const Kbd: React.ForwardRefExoticComponent<KbdProps & React.RefAttributes<HTMLElement>>;