Bluesky app fork with some witchin' additions 馃挮
at main 12 lines 357 B view raw
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}