UNPKG

@rcpch/digital-growth-charts-react-component-library

Version:

A React component library for the RCPCH digital growth charts using Rollup, TypeScript and Styled-Components

8 lines (7 loc) 290 B
import * as React from 'react'; type PropTypes = { datum?: number; chartScaleType: 'prem' | 'infant' | 'smallChild' | 'biggerChild'; }; declare function CustomGridComponent({ datum, chartScaleType, ...otherProps }: PropTypes): React.JSX.Element; export default CustomGridComponent;