mirror of https://git.lenooby09.tech/LeNooby09/social-app.git
1import {type Props} from '#/components/icons/common'
2import {VerifiedCheck} from '#/components/icons/VerifiedCheck'
3import {VerifierCheck} from '#/components/icons/VerifierCheck'
4
5export function VerificationCheck({
6 verifier,
7 ...rest
8}: Props & {
9 verifier?: boolean
10}) {
11 return verifier ? <VerifierCheck {...rest} /> : <VerifiedCheck {...rest} />
12}