34 lines
973 B
JavaScript
34 lines
973 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.getStyles = getStyles;
|
|
var Styling_1 = require("../../../Styling");
|
|
function getStyles(props) {
|
|
var _a;
|
|
return {
|
|
root: [
|
|
{
|
|
position: 'absolute',
|
|
boxShadow: 'inherit',
|
|
border: 'none',
|
|
boxSizing: 'border-box',
|
|
transform: props.transform,
|
|
width: props.width,
|
|
height: props.height,
|
|
left: props.left,
|
|
top: props.top,
|
|
right: props.right,
|
|
bottom: props.bottom,
|
|
},
|
|
],
|
|
beak: {
|
|
fill: props.color,
|
|
display: 'block',
|
|
selectors: (_a = {},
|
|
_a[Styling_1.HighContrastSelector] = {
|
|
fill: 'windowtext',
|
|
},
|
|
_a),
|
|
},
|
|
};
|
|
}
|
|
//# sourceMappingURL=Beak.styles.js.map
|