UNPKG

breakfast-ui

Version:

Your tasty component library

11 lines (10 loc) 338 B
/// <reference types="react" /> import Color from "../../../Colors.types"; export default interface LoaderTextProps extends React.HTMLAttributes<HTMLParagraphElement> { text: string; loaderPosition?: "start" | "end"; color?: Color; isLoading?: boolean; fontSize?: string; styles?: React.CSSProperties; }