reablocks
Version:
Component library for React
37 lines (36 loc) • 740 B
TypeScript
export interface DividerTheme {
base?: string;
orientation?: {
vertical?: string;
horizontal?: string;
};
variant?: {
primary?: string;
secondary?: string;
};
disableMargins?: string;
}
export declare const dividerTheme: {
base?: string;
orientation?: {
vertical?: string;
horizontal?: string;
};
variant?: {
primary?: string;
secondary?: string;
};
disableMargins?: string;
};
export declare const legacyDividerTheme: {
base: string;
orientation: {
horizontal: string;
vertical: string;
};
variant?: {
primary?: string;
secondary?: string;
};
disableMargins?: string;
};