@team-monolith/cds 1.70.0 → 1.70.1
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.
|
@@ -27,7 +27,7 @@ export interface SquareButtonOwnProps<RootComponentType extends React.ElementTyp
|
|
|
27
27
|
/** 버튼에 전달될 Props. 접근성을 위해 aria-label이 필수로 들어가야 합니다. */
|
|
28
28
|
buttonProps: {
|
|
29
29
|
"aria-label": string;
|
|
30
|
-
} &
|
|
30
|
+
} & Omit<ButtonProps, "disabled" | "color" | "type" | "size" | "icon" | "label" | "loading" | "fullWidth" | "onClick" | "aria-label">;
|
|
31
31
|
}
|
|
32
32
|
export type SquareButtonProps<RootComponentType extends React.ElementType = SquareButtonTypeMap["defaultComponent"]> = PolymorphicProps<SquareButtonTypeMap<RootComponentType>, RootComponentType>;
|
|
33
33
|
export interface SquareButtonTypeMap<RootComponentType extends React.ElementType = "span"> {
|