@bigbinary/neetoui 4.0.7 → 4.0.9
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/CHANGELOG.md +9 -0
- package/index.css +1 -1
- package/index.d.ts +6 -0
- package/index.js +1 -1
- package/layouts.js +1 -1
- package/molecules.js +1 -1
- package/package.json +1 -1
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>;
|