diff --git a/src/components/LimitReachedAlert.tsx b/src/components/LimitReachedAlert.tsx index 3051a5a13..5b731dcbd 100644 --- a/src/components/LimitReachedAlert.tsx +++ b/src/components/LimitReachedAlert.tsx @@ -1,22 +1,25 @@ -import { Alert, AlertProps, makeStyles } from "@saleor/macaw-ui"; +import { Alert, AlertProps } from "@saleor/macaw-ui"; +import { sprinkles } from "@saleor/macaw-ui/next"; +import clsx from "clsx"; import React from "react"; -const useStyles = makeStyles( - theme => ({ - root: { - marginBottom: theme.spacing(3), - }, - }), - { name: "LimitReachedAlert" }, -); - export type LimitReachedAlertProps = Omit; -const LimitReachedAlert: React.FC = props => { - const classes = useStyles(); - - return ; -}; +const LimitReachedAlert: React.FC = props => ( + // TODO: migrate to new macaw-ui alert + +); LimitReachedAlert.displayName = "LimitReachedAlert"; export default LimitReachedAlert; diff --git a/src/index.css b/src/index.css index 72d390ebb..9a0174a4a 100644 --- a/src/index.css +++ b/src/index.css @@ -36,3 +36,7 @@ body { animation: pulse 0.2s; transition: all 0.2s; } + +.remove-icon-background svg { + background: none !important; +}