UNPKG

mt-flowbite-react

Version:

Official React components built for Flowbite and Tailwind CSS

9 lines (8 loc) 251 B
import { StateCreator } from 'zustand'; export interface DesignSlice { isDesignEnabled: boolean; setDesignEnabled: (isDesignEnabled: boolean) => void; } export declare const createDesignSlice: StateCreator<DesignSlice, [ ], [ ], DesignSlice>;