UNPKG

carbon-react

Version:

A library of reusable React components for easily building user interfaces.

15 lines (14 loc) 572 B
import { TagProps } from "../../__internal__/utils/helpers/tags/tags"; export interface LoaderStarProps extends TagProps { /** * The loaderStarLabel prop allows a specific label to be set. * This label will be present if the user has `reduce-motion` enabled and will also be available to assistive technologies. * By default the label will be `Loading...`. */ loaderStarLabel?: string; } declare const LoaderStar: { ({ loaderStarLabel, ...rest }: LoaderStarProps): JSX.Element | null; displayName: string; }; export default LoaderStar;