import { h } from 'preact'; import { mergeClasses } from './Util'; import { AccountMeta } from 'common/graph/type'; interface Props { account: AccountMeta; active: boolean; onClick: () => void; } /** * An image button representing an account in the account sidebar. */ export default function AccountSidebarItem({ account, active, onClick }: Props) { return ( ); }