UNPKG

257 BTypeScriptView Raw
1import React from 'react';
2interface Props {
3 children: React.ReactNode;
4 fit: boolean;
5 onClick?: React.MouseEventHandler;
6 testId?: string;
7}
8declare const _default: ({ fit, children, ...rest }: Props) => JSX.Element;
9export default _default;