You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
616 B
JavaScript

import style from './style';
import compose from './compose';
export const displayPrint = style({
prop: 'displayPrint',
cssProperty: false,
transform: value => ({
'@media print': {
display: value
}
})
});
export const displayRaw = style({
prop: 'display'
});
export const overflow = style({
prop: 'overflow'
});
export const textOverflow = style({
prop: 'textOverflow'
});
export const visibility = style({
prop: 'visibility'
});
export const whiteSpace = style({
prop: 'whiteSpace'
});
export default compose(displayPrint, displayRaw, overflow, textOverflow, visibility, whiteSpace);