mirror of https://github.com/sgoudham/carbon.git
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.
19 lines
395 B
JavaScript
19 lines
395 B
JavaScript
7 years ago
|
import React from 'react'
|
||
|
import { Controls, ControlsBW } from './svg/Controls'
|
||
|
|
||
|
export default ({ theme }) => (
|
||
|
<div className="window-controls">
|
||
|
{ theme === 'bw' ? <ControlsBW /> : <Controls /> }
|
||
|
<style jsx>{`
|
||
|
div {
|
||
|
margin-top: -19px;
|
||
|
position: relative;
|
||
|
top: +30px;
|
||
|
margin-left: 18px;
|
||
|
z-index: 1;
|
||
|
}
|
||
|
`}
|
||
|
</style>
|
||
|
</div>
|
||
|
)
|