-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIconButton.tsx
More file actions
66 lines (61 loc) · 1.34 KB
/
IconButton.tsx
File metadata and controls
66 lines (61 loc) · 1.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
/*
* Copyright (c) 2019-2026 by Brockmann Consult Development team
* Permissions are hereby granted under the terms of the MIT License:
* https://opensource.org/licenses/MIT.
*/
import { type MouseEvent } from "react";
import MuiIconButton from "@mui/material/IconButton";
import type { ComponentState, ComponentProps } from "@/index";
import { Icon } from "./Icon";
import { Tooltip } from "./Tooltip";
interface IconButtonState extends ComponentState {
icon?: string;
color?:
| "inherit"
| "primary"
| "secondary"
| "success"
| "error"
| "info"
| "warning";
size?: "small" | "medium" | "large";
}
interface IconButtonProps extends ComponentProps, IconButtonState {}
export function IconButton({
type,
id,
name,
style,
tooltip,
color,
icon,
size,
disabled,
onChange,
}: IconButtonProps) {
const handleClick = (_event: MouseEvent<HTMLButtonElement>) => {
if (id) {
onChange({
componentType: type,
id: id,
property: "clicked",
value: true,
});
}
};
return (
<Tooltip title={tooltip}>
<MuiIconButton
id={id}
name={name}
style={style}
color={color}
size={size}
disabled={disabled}
onClick={handleClick}
>
<Icon iconName={icon} />
</MuiIconButton>
</Tooltip>
);
}