plainframe-ui 0.1.34 → 0.1.36
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/dist/index.d.ts +5 -0
- package/dist/index.js +7 -7
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -732,6 +732,11 @@ type KbdProps = Omit<React.HTMLAttributes<HTMLElement>, "style"> & {
|
|
|
732
732
|
radius?: number | string;
|
|
733
733
|
mono?: boolean;
|
|
734
734
|
uppercase?: boolean;
|
|
735
|
+
/**
|
|
736
|
+
* Extra px to boost symbol-only content in mono fonts.
|
|
737
|
+
* Set to 0 to disable.
|
|
738
|
+
*/
|
|
739
|
+
symbolBoost?: number;
|
|
735
740
|
css?: Interpolation<Theme>;
|
|
736
741
|
className?: string;
|
|
737
742
|
};
|