lucent-ui 0.16.0 → 0.17.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/dist/index.d.ts CHANGED
@@ -126,9 +126,9 @@ export declare interface ButtonProps extends ButtonHTMLAttributes<HTMLButtonElem
126
126
  bordered?: boolean;
127
127
  }
128
128
 
129
- export declare type ButtonSize = 'xs' | 'sm' | 'md' | 'lg';
129
+ export declare type ButtonSize = '2xs' | 'xs' | 'sm' | 'md' | 'lg';
130
130
 
131
- export declare type ButtonVariant = 'primary' | 'secondary' | 'outline' | 'ghost' | 'danger';
131
+ export declare type ButtonVariant = 'primary' | 'secondary' | 'outline' | 'ghost' | 'danger' | 'danger-outline' | 'danger-ghost';
132
132
 
133
133
  export declare function Card({ variant, header, footer, children, padding, shadow, radius, style, onClick, href, target, rel, disabled, status, selected, media, }: CardProps): JSX_2.Element;
134
134