Skip to content
Snippets Groups Projects
Commit 4f7ae57b authored by Kamil Mielnik's avatar Kamil Mielnik
Browse files

Remove unused type

parent ea1213ab
No related branches found
No related tags found
No related merge requests found
import type { IconName } from "metabase/ui";
/**
* clear - to indicate the value can be removed
* reset - to indicate the value can be reset to default
......@@ -7,15 +5,3 @@ import type { IconName } from "metabase/ui";
* none - when the component is not needed, but we still render it to preserve space for it
*/
export type Status = "clear" | "reset" | "empty" | "none";
export type StatusConfig =
| {
button: true;
icon: IconName;
label: string;
}
| {
button?: never;
label?: never;
icon: IconName;
};
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment