diff --git a/src/components/Svg/Svg.tsx b/src/components/Svg/Svg.tsx index f5166956..27ee7d43 100644 --- a/src/components/Svg/Svg.tsx +++ b/src/components/Svg/Svg.tsx @@ -16,13 +16,19 @@ const StyledSvg = styled(DEFAULT_TAG, { }) type SvgVariants = VariantProps -type SvgProps = ComponentProps & +type SvgProps = Omit, 'fr'> & CSSProps & SvgVariants & { /** Add a title to the svg */ title?: string /** Add the given svg path */ path?: string + /** + * The fr attribute defines the radius of the focal point for the radial gradient. + * + * Forced optional due to ts bug + */ + fr?: string } /**