@yamada-ui/react
Version:
React UI components of the Yamada, by the Yamada, for the Yamada built with React and Emotion
15 lines (13 loc) • 592 B
TypeScript
import { Breakpoint } from "../../core/system/index.types.js";
import "../../core/index.js";
import { DependencyList } from "react";
//#region src/hooks/use-breakpoint/use-breakpoint-effect.d.ts
/**
* `useBreakpointEffect` is a custom hook that executes a specific callback function when the breakpoint changes.
*
* @see https://yamada-ui.com/docs/hooks/use-breakpoint-effect
*/
declare const useBreakpointEffect: (callback: (breakpoint: Breakpoint) => void, deps: DependencyList) => void;
//#endregion
export { useBreakpointEffect };
//# sourceMappingURL=use-breakpoint-effect.d.ts.map