UNPKG

@navikt/ds-react

Version:

React components from the Norwegian Labour and Welfare Administration.

12 lines (11 loc) 425 B
import React from "react"; import { ZoomButtonType } from "./ZoomButton"; interface ZoomProps extends React.HTMLAttributes<HTMLUListElement> { children: React.ReactNode; } export interface ZoomType<Props = ZoomProps> extends React.ForwardRefExoticComponent<Props & React.RefAttributes<HTMLUListElement>> { Button: ZoomButtonType; componentType: string; } export declare const Zoom: ZoomType; export default Zoom;