UNPKG

react-text-row-count

Version:

React helper that adds a data-row-count attribute based on measured text rows.

10 lines (7 loc) 273 B
import React from 'react'; type RowCountProps = { children: React.ReactElement; onRowCountChanged?: (rowCount: number) => void; }; declare function RowCount({ children, onRowCountChanged }: RowCountProps): any; export { type RowCountProps, RowCount as default };