diff --git a/workspaces/website/src/components/ArticleCard/ArticleCard.tsx b/workspaces/website/src/components/ArticleCard/ArticleCard.tsx index 68f47cc25b..a0d6d1e127 100644 --- a/workspaces/website/src/components/ArticleCard/ArticleCard.tsx +++ b/workspaces/website/src/components/ArticleCard/ArticleCard.tsx @@ -6,6 +6,7 @@ import { Image as ChakraImage, Icon, Flex, + ChakraProps, } from "@chakra-ui/react"; import { Text } from "@ui/Typography/Text"; import { Heading } from "@ui/Typography/Heading"; @@ -17,11 +18,12 @@ type RootProps = { children: React.ReactNode; href: string; type?: | "grid" | "featured"; + sx?: ChakraProps['sx'] }; -const Root = ({ children, href, type = "grid" }: RootProps) => { +const Root = ({ children, href, type = "grid", sx }: RootProps) => { return ( - +