@nimbus-ds/components 5.17.0 → 5.17.1-rc.2

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 CHANGED
@@ -2217,11 +2217,6 @@ export interface ButtonProperties {
2217
2217
  * @default false
2218
2218
  */
2219
2219
  disabled?: boolean;
2220
- /**
2221
- * Determines if the button should grow to fill the full width of its container.
2222
- * @default false
2223
- */
2224
- fullWidth?: boolean;
2225
2220
  }
2226
2221
  export type ButtonBaseProps = ButtonProperties & ButtonHTMLAttributes<HTMLButtonElement>;
2227
2222
  export declare const Button: PolymorphicForwardRefComponent<"button" | "a", ButtonBaseProps> & ButtonComponents;