@bigbinary/neetoui 4.0.7 → 4.0.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/index.d.ts CHANGED
@@ -505,6 +505,11 @@ export type TypographyProps = {
505
505
  [key: string]: any;
506
506
  };
507
507
 
508
+ export type KbdProps = {
509
+ keyName?: string;
510
+ className?: string;
511
+ };
512
+
508
513
  // components
509
514
 
510
515
  export const Accordion: React.FC<AccordionProps> & {
@@ -569,3 +574,4 @@ export const Textarea: React.ForwardRefExoticComponent<TextareaProps>;
569
574
  export const TimePicker: React.FC<TimePickerProps>;
570
575
  export const Typography: React.ForwardRefExoticComponent<TypographyProps>;
571
576
  export const Tooltip: React.ForwardRefExoticComponent<TooltipProps>;
577
+ export const Kbd: React.FC<KbdProps>;