UNPKG

react-carousel-query

Version:

A infinite carousel component made with react that handles the pagination for you.

12 lines (11 loc) 333 B
import { FC } from 'react'; import { IconsProps } from '@storybook/components'; interface ToolbarMenuButtonProps { active: boolean; title: string; icon: IconsProps['icon'] | ''; description: string; onClick?: () => void; } export declare const ToolbarMenuButton: FC<ToolbarMenuButtonProps>; export {};