carbon-react
Version:
A library of reusable React components for easily building user interfaces.
9 lines (8 loc) • 345 B
TypeScript
import { ValidationIconProps } from "./validation-icon.component";
type ValidationType = "error" | "warning" | "info";
declare const ValidationIconStyle: import("styled-components").StyledComponent<"span", any, {
theme: object;
} & ValidationIconProps & {
validationType: ValidationType;
}, "theme">;
export default ValidationIconStyle;