kku-ui 0.2.5 → 0.2.52

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.
@@ -1,9 +1,8 @@
1
- import { MouseEvent, KeyboardEvent } from 'react';
2
- import { KBaseProp } from '../../../common/base/base.interface';
1
+ import { MouseEvent, KeyboardEvent, HTMLAttributes } from 'react';
3
2
  export declare const ICON_SIZES: readonly ["xsmall", "small", "medium", "large", "xlarge"];
4
3
  export type KIconSize = (typeof ICON_SIZES)[number];
5
4
  export declare const KIconSizeList: ("small" | "medium" | "large" | "xsmall" | "xlarge")[];
6
- export interface KIconProps extends KBaseProp {
5
+ export interface KIconProps extends HTMLAttributes<HTMLSpanElement> {
7
6
  icon: string;
8
7
  size?: KIconSize | number;
9
8
  disabled?: boolean;