@useloops/design-system
Version:
The official React based Loops design system
19 lines (16 loc) • 546 B
TypeScript
import { BoxProps } from '@mui/material';
import { FunctionComponent, PropsWithChildren } from 'react';
import { TypographyProps } from '../Typography/Typography.js';
interface KbdGroupProps extends PropsWithChildren {
startText?: string;
endText?: string;
slotProps?: {
root?: BoxProps;
iconContainer?: BoxProps;
startText?: TypographyProps;
endText?: TypographyProps;
};
}
declare const KbdGroup: FunctionComponent<KbdGroupProps>;
export { KbdGroup as default };
export type { KbdGroupProps };