Security upgrades
This commit is contained in:
29
node_modules/@material-ui/system/es/typography.js
generated
vendored
Normal file
29
node_modules/@material-ui/system/es/typography.js
generated
vendored
Normal file
@@ -0,0 +1,29 @@
|
||||
import style from './style';
|
||||
import compose from './compose';
|
||||
export const fontFamily = style({
|
||||
prop: 'fontFamily',
|
||||
themeKey: 'typography'
|
||||
});
|
||||
export const fontSize = style({
|
||||
prop: 'fontSize',
|
||||
themeKey: 'typography'
|
||||
});
|
||||
export const fontStyle = style({
|
||||
prop: 'fontStyle',
|
||||
themeKey: 'typography'
|
||||
});
|
||||
export const fontWeight = style({
|
||||
prop: 'fontWeight',
|
||||
themeKey: 'typography'
|
||||
});
|
||||
export const letterSpacing = style({
|
||||
prop: 'letterSpacing'
|
||||
});
|
||||
export const lineHeight = style({
|
||||
prop: 'lineHeight'
|
||||
});
|
||||
export const textAlign = style({
|
||||
prop: 'textAlign'
|
||||
});
|
||||
const typography = compose(fontFamily, fontSize, fontStyle, fontWeight, letterSpacing, lineHeight, textAlign);
|
||||
export default typography;
|
||||
Reference in New Issue
Block a user