Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F122788171
TextRenderer.d.ts
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Tue, Jul 22, 03:25
Size
1 KB
Mime Type
text/x-java
Expires
Thu, Jul 24, 03:25 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
27527923
Attached To
rOACCT Open Access Compliance Check Tool (OACCT)
TextRenderer.d.ts
View Options
import React from 'react';
import { JssInjectedProps } from 'rsg-components/Styled';
import * as Rsg from '../../../typings';
export declare const styles: ({ fontFamily, fontSize, color }: Rsg.Theme) => {
text: {
fontFamily: string[];
};
inheritSize: {
fontSize: string;
};
smallSize: {
fontSize: number;
};
baseSize: {
fontSize: number;
};
textSize: {
fontSize: number;
};
baseColor: {
color: string;
};
lightColor: {
color: string;
};
em: {
fontStyle: string;
};
strong: {
fontWeight: string;
};
isUnderlined: {
borderBottom: (string | number)[][];
};
};
export interface TextProps extends JssInjectedProps {
semantic?: 'em' | 'strong';
size?: 'inherit' | 'small' | 'base' | 'text';
color?: 'base' | 'light';
underlined?: boolean;
children: React.ReactNode;
[intrinsicAttribute: string]: any;
}
export declare const TextRenderer: React.FunctionComponent<TextProps>;
declare const _default: React.ComponentType<Omit<TextProps, "classes">>;
export default _default;
Event Timeline
Log In to Comment