@cbinsights/fds
Version:
Form: A design system by CB Insights
41 lines (40 loc) • 1.14 kB
TypeScript
export namespace generalStyles {
const width: string;
const height: string;
const padding: string;
}
export namespace containerStyles {
const margin: string;
}
export namespace layoutStyle {
export const display: string;
export const flexDirection: string;
export const justifyContent: string;
export const alignItems: string;
const margin_1: string;
export { margin_1 as margin };
}
export namespace labelStyle {
const fontSize: number;
const marginBottom: number;
const fontFamily: string;
const color: string;
}
export function Example(props: any): JSX.Element;
export namespace Example {
namespace propTypes {
const label: PropTypes.Requireable<string>;
const children: PropTypes.Requireable<PropTypes.ReactNodeLike>;
}
}
export function Headers(): JSX.Element;
export function Typesetting({ isInverted }: {
isInverted: any;
}): JSX.Element;
export namespace Typesetting {
export namespace propTypes_1 {
const isInverted: PropTypes.Requireable<boolean>;
}
export { propTypes_1 as propTypes };
}
import PropTypes from "prop-types";