import classNames from 'clsx'; import React from 'react'; import { HStack, Icon, Text } from 'soapbox/components/ui'; interface IValidationCheckmark { isValid: boolean text: string } const ValidationCheckmark = ({ isValid, text }: IValidationCheckmark) => { return ( {text} ); }; export default ValidationCheckmark;