import Icon from '@/Components/Icon/Icon' import { FunctionComponent, ReactNode } from 'react' type Props = { icon: ReactNode status: string checkmark?: boolean } const EncryptionStatusItem: FunctionComponent = ({ icon, status, checkmark = true }) => (
{icon}
{status}
{checkmark && }
) export default EncryptionStatusItem