UNPKG

@dnanpm/styleguide

Version:

DNA Styleguide repository provides the set of components and theme object used in various DNA projects.

26 lines (25 loc) 623 B
import React from 'react'; interface Props { /** * Allows to pass custom color * * @default 'theme.color.default.pink' */ color?: string; /** * Allows to pass a custom className */ className?: string; /** * Allows to pass testid string for testing purposes */ 'data-testid'?: string; /** * Allows to pass a label for screen readers */ label?: string; } /** @visibleName Pixel Loader */ declare const PixelLoader: ({ className, "data-testid": dataTestId, ...props }: Props) => React.JSX.Element; /** @component */ export default PixelLoader;