diff --git a/fwt/components/Image/Image.tsx b/fwt/components/Image/Image.tsx index 2df6d4c..d885641 100644 --- a/fwt/components/Image/Image.tsx +++ b/fwt/components/Image/Image.tsx @@ -3,6 +3,7 @@ interface Props { webp: string size?: number alt?: string + radius?: number } export default (props: Props) => { @@ -11,7 +12,7 @@ export default (props: Props) => { - {props.alt} + {props.alt} )