@nimbus-ds/components 5.20.0 → 5.21.0
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 +6 -0
- package/dist/CHANGELOG.md +6 -0
- package/dist/IconButton/index.d.ts +65 -0
- package/dist/IconButton/index.js +1 -1
- package/dist/components-props.json +1 -1
- package/dist/index.d.ts +5 -0
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2417,6 +2417,11 @@ export interface IconButtonProperties extends IconButtonSprinkle {
|
|
|
2417
2417
|
* @TJS-type React.ReactNode
|
|
2418
2418
|
*/
|
|
2419
2419
|
source: ReactNode;
|
|
2420
|
+
/**
|
|
2421
|
+
* Set the color for the inner Icon fill.
|
|
2422
|
+
* @default neutral-textHigh
|
|
2423
|
+
*/
|
|
2424
|
+
color?: IconProps["color"];
|
|
2420
2425
|
}
|
|
2421
2426
|
export type IconButtonProps = IconButtonProperties & ButtonHTMLAttributes<HTMLButtonElement | HTMLDivElement>;
|
|
2422
2427
|
export declare const IconButton: React.FC<IconButtonProps> & IconButtonComponents;
|