diff --git a/frontend/shadow-cljs.edn b/frontend/shadow-cljs.edn index f223b5f71..ebd3062c5 100644 --- a/frontend/shadow-cljs.edn +++ b/frontend/shadow-cljs.edn @@ -92,10 +92,6 @@ {:base {:entries []} - :icons - {:exports {default app.main.ui.icons/default} - :depends-on #{:base}} - :components {:exports {:default app.main.ui.ds/default} :depends-on #{:base}}} diff --git a/frontend/src/app/main/ui/ds/buttons/simple_button.stories.jsx b/frontend/src/app/main/ui/ds/buttons/simple_button.stories.jsx index d53eaf638..d4bb348fd 100644 --- a/frontend/src/app/main/ui/ds/buttons/simple_button.stories.jsx +++ b/frontend/src/app/main/ui/ds/buttons/simple_button.stories.jsx @@ -1,7 +1,6 @@ import * as React from "react"; import Components from "@target/components"; -import Icons from "@target/icons"; export default { title: "Buttons/Simple Button", @@ -15,14 +14,3 @@ export const Default = { ), }; - -export const WithIcon = { - render: () => ( - - - {Icons.AddRefactor} - Simple Button - - - ), -};