This commit is contained in:
Alex Holliday
2026-01-26 17:11:09 +00:00
parent 11c95f885d
commit d71c7c6ee1
3 changed files with 10 additions and 3 deletions
@@ -7,7 +7,12 @@ interface IconProps {
}
const Icon = ({ icon: Icon, size = 20, strokeWidth = 1.5 }: IconProps) => {
return <Icon size={size} strokeWidth={strokeWidth} />;
return (
<Icon
size={size}
strokeWidth={strokeWidth}
/>
);
};
export default Icon;
+4 -1
View File
@@ -4,4 +4,7 @@ export { SelectInput as Select } from "./Select";
export { CheckboxInput as Checkbox } from "./Checkbox";
export { AutoCompleteInput as Autocomplete } from "./AutoComplete";
export { TextInput as TextField } from "./TextInput";
export { ToggleButtonInput as ToggleButton, ToggleButtonGroupInput as ToggleButtonGroup } from "./ToggleButton";
export {
ToggleButtonInput as ToggleButton,
ToggleButtonGroupInput as ToggleButtonGroup,
} from "./ToggleButton";
-1
View File
@@ -48,7 +48,6 @@ export interface MonitorsWithChecksResponse {
summary: MonitorsSummary;
}
export interface MonitorStats {
id: string;
monitorId: string;