mistui-kit
Version:
**👉 [Try MistUi Live](https://gilded-tanuki-0eb52b.netlify.app/) — interactive playground & docs**
14 lines (13 loc) • 478 B
TypeScript
import { useContainerSize } from './useContainerWidth';
import useBreakpoints from './useBreackpoints';
import { useThrottled } from './throttle';
import { useDebounced } from './debounce';
import iconToMask from './mask';
declare const modules: {
useContainerSize: typeof useContainerSize;
useBreakpoints: typeof useBreakpoints;
useThrottled: typeof useThrottled;
useDebounced: typeof useDebounced;
iconToMask: typeof iconToMask;
};
export default modules;