chore(storybook): purge unused Providers props

This commit is contained in:
Ilia Mashkov
2026-04-18 11:02:34 +03:00
parent 99d92d487f
commit af05443763

View File

@@ -17,33 +17,9 @@ interface Props {
* Content snippet
*/
children: Snippet;
/**
* Initial viewport width
* @default 1280
*/
initialWidth?: number;
/**
* Initial viewport height
* @default 720
*/
initialHeight?: number;
/**
* Tooltip delay duration
*/
tooltipDelayDuration?: number;
/**
* Tooltip skip delay duration
*/
tooltipSkipDelayDuration?: number;
}
let {
children,
initialWidth = 1280,
initialHeight = 720,
tooltipDelayDuration = 200,
tooltipSkipDelayDuration = 300,
}: Props = $props();
let { children }: Props = $props();
// Create a responsive manager with default breakpoints
const responsiveManager = createResponsiveManager();