import { c, classy } from '@onfido/castor'; import { IconName } from '@onfido/castor-icons'; import { Icon } from '@onfido/castor-react'; import React from 'react'; interface Props { icon?: JSX.Element; name: IconName; } export const MaybeIcon = ({ icon, name }: Props) => icon ? (
{icon}
) : (