@useloops/design-system
Version:
The official React based Loops design system
13 lines (10 loc) • 338 B
TypeScript
import { FunctionComponent, ReactNode } from 'react';
import { Size } from './types.js';
interface PinchIndicatorProps {
instructionText: ReactNode;
size: Size;
show?: boolean;
}
declare const PinchIndicator: FunctionComponent<PinchIndicatorProps>;
export { PinchIndicator as default };
export type { PinchIndicatorProps };