18 lines
330 B
TypeScript
18 lines
330 B
TypeScript
![]() |
import { CommandSetConfig } from 'lib/commandTypes'
|
||
|
import { authMachine } from 'machines/authMachine'
|
||
|
|
||
|
type AuthCommandSchema = {}
|
||
|
|
||
|
export const authCommandBarConfig: CommandSetConfig<
|
||
|
typeof authMachine,
|
||
|
AuthCommandSchema
|
||
|
> = {
|
||
|
'Log in': {
|
||
|
hide: 'both',
|
||
|
},
|
||
|
'Log out': {
|
||
|
args: [],
|
||
|
icon: 'arrowLeft',
|
||
|
},
|
||
|
}
|