fix: icon size in sidbar
parent
80dc74a0ec
commit
3b46f90124
|
|
@ -17,6 +17,11 @@
|
|||
height: 20px;
|
||||
}
|
||||
|
||||
&[data-size="medium"] {
|
||||
width: 24px;
|
||||
height: 24px;
|
||||
}
|
||||
|
||||
&[data-size="large"] {
|
||||
width: 24px;
|
||||
height: 24px;
|
||||
|
|
|
|||
|
|
@ -73,7 +73,7 @@ const icons = {
|
|||
|
||||
export interface IconProps extends ComponentProps<"svg"> {
|
||||
name: keyof typeof icons
|
||||
size?: "small" | "normal" | "large"
|
||||
size?: "small" | "normal" | "medium" | "large"
|
||||
}
|
||||
|
||||
export function Icon(props: IconProps) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue