carbon-react
Version:
A library of reusable React components for easily building user interfaces.
11 lines (10 loc) • 379 B
TypeScript
declare const FormFieldStyle: import("styled-components").StyledComponent<"div", any, {
theme: object;
}, "theme">;
export interface FieldLineStyleProps {
inline?: boolean;
maxWidth?: string;
}
declare const FieldLineStyle: import("styled-components").StyledComponent<"div", any, FieldLineStyleProps, never>;
export { FieldLineStyle };
export default FormFieldStyle;