UNPKG

@polkadot/dev

Version:

A collection of shared CI scripts and development environment used by @polkadot projects

10 lines (9 loc) 310 B
import React from 'react'; export interface Props { children?: React.ReactNode; className?: string; label?: string; } declare function Child({ children, className, label }: Props): React.ReactElement<Props>; declare const _default: React.MemoExoticComponent<typeof Child>; export default _default;