Bluesky app fork with some witchin' additions 馃挮
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 518c6e3d8957a81d3af30601ae965180c19b6ee2 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}