9 lines
247 B
TypeScript
9 lines
247 B
TypeScript
|
|
export interface VennChartStyleOptions {
|
||
|
|
vennTitleTextColor: string;
|
||
|
|
vennSetTextColor: string;
|
||
|
|
fontFamily: string;
|
||
|
|
textColor: string;
|
||
|
|
}
|
||
|
|
declare const getStyles: (options: VennChartStyleOptions) => string;
|
||
|
|
export default getStyles;
|