This kit was created to display employee icons related to a Nitro user. Currently there is the PVI logo and the Million Dollar Rep Icon.
Use these to represent what affiliation an employee has.
import React from 'react' import { UserBadge } from 'playbook-ui' const UserBadgeSize = () => { return ( <div> <div> <UserBadge badge="veteran" size="sm" /> </div> <br /> <br /> <div> <UserBadge badge="veteran" size="md" /> </div> <br /> <br /> <div> <UserBadge badge="veteran" size="lg" /> </div> </div> ) } export default UserBadgeSize