carbon-react
Version:
A library of reusable React components for easily building user interfaces.
13 lines (12 loc) • 697 B
TypeScript
import { MarginProps } from "styled-system";
export interface StyledLoaderBarProps {
/** Size of the LoaderBar. */
size?: "small" | "medium" | "large";
}
declare const StyledLoader: import("styled-components").StyledComponent<"div", any, {
theme: object;
} & StyledLoaderBarProps & MarginProps<Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>>, "theme">;
declare const StyledLoaderBar: import("styled-components").StyledComponent<"div", any, StyledLoaderBarProps, never>;
declare const InnerBar: import("styled-components").StyledComponent<"div", any, StyledLoaderBarProps, never>;
export { InnerBar, StyledLoader };
export default StyledLoaderBar;