office-ui-fabric-react
Version:
Reusable React components for building experiences for Office 365.
26 lines • 750 B
JavaScript
import { DefaultPalette } from '../../../Styling';
export function getStyles(props) {
return {
root: [
{
position: 'absolute',
boxShadow: 'inherit',
border: 'none',
boxSizing: 'border-box',
transform: 'translateY(-50%)',
left: '50%',
width: props.width,
height: props.height
},
(props.left && props.top) && {
left: props.left,
top: props.top
}
],
beak: {
fill: DefaultPalette.themePrimary,
display: 'block'
}
};
}
//# sourceMappingURL=Beak.styles.js.map