This repository was archived by the owner on Jul 29, 2025. It is now read-only.

Description
#953 adds a bunch of imports to fix an error in typescript type expansion. They should be removed at some point.
Each one looks like:
import {
[...]
// @ts-ignore TODO(issues/955) Remove once possible
RippledComponentProps, // eslint-disable-line @typescript-eslint/no-unused-vars
} from '@material/react-ripple';
Each one should be reduced to:
import {
[...]
} from '@material/react-ripple';