@ -24,7 +24,7 @@ const CreateAppCard = (
className,
onSuccess,
}: CreateAppCardProps & {
ref: React.RefObject<HTMLDivElement>;
ref?: React.RefObject<HTMLDivElement>;
},
) => {
const { t } = useTranslation()
@ -64,7 +64,7 @@ const Icon = (
{
ref,
...props
}: React.MutableRefObject<SVGElement> & {
}: React.SVGProps<SVGSVGElement> & {
ref?: React.RefObject<React.MutableRefObject<HTMLOrSVGElement>>;
) => <IconBase {...props} ref={ref} data={data as IconData} />
@ -10,7 +10,7 @@ const Icon = (