@selfcommunity/react-theme-default
Version:
Default theme to use with SelfCommunity TS library
34 lines (33 loc) • 1.02 kB
TypeScript
declare const Component: {
styleOverrides: {
root: ({ theme }: any) => {
display: string;
flexDirection: string;
marginTop: string;
"& .SCPdfPreview-document-pdf-wrapper": {
filter: string;
};
"& .SCPdfPreview-document-pdf-link": {
padding: number;
'&:hover': {
opacity: number;
};
};
"& .SCPdfPreview-document-pdf-page": {
display: string;
flexDirection: string;
justifyContent: string;
marginBottom: any;
pageBreakAfter: string;
'& .react-pdf__Page__textContent': {
mixBlendMode: string;
opacity: number;
};
'& .react-pdf__Page__canvas': {
margin: string;
};
};
};
};
};
export default Component;