File size: 329 Bytes
8a37e0a |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
import type { MenuItemProps } from '@invoke-ai/ui-library';
import { atom } from 'nanostores';
export type CustomStarUi = {
on: {
icon: MenuItemProps['icon'];
text: string;
};
off: {
icon: MenuItemProps['icon'];
text: string;
};
};
export const $customStarUI = atom<CustomStarUi | undefined>(undefined);
|