mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-23 00:45:16 +00:00
29 lines
698 B
JavaScript
29 lines
698 B
JavaScript
import style from './style';
|
|
import compose from './compose';
|
|
export var fontFamily = style({
|
|
prop: 'fontFamily',
|
|
themeKey: 'typography'
|
|
});
|
|
export var fontSize = style({
|
|
prop: 'fontSize',
|
|
themeKey: 'typography'
|
|
});
|
|
export var fontStyle = style({
|
|
prop: 'fontStyle',
|
|
themeKey: 'typography'
|
|
});
|
|
export var fontWeight = style({
|
|
prop: 'fontWeight',
|
|
themeKey: 'typography'
|
|
});
|
|
export var letterSpacing = style({
|
|
prop: 'letterSpacing'
|
|
});
|
|
export var lineHeight = style({
|
|
prop: 'lineHeight'
|
|
});
|
|
export var textAlign = style({
|
|
prop: 'textAlign'
|
|
});
|
|
var typography = compose(fontFamily, fontSize, fontStyle, fontWeight, letterSpacing, lineHeight, textAlign);
|
|
export default typography; |