2021-03-15 12:17:56 +00:00
|
|
|
import styled from "constants/DefaultTheme";
|
|
|
|
|
import { Switch } from "@blueprintjs/core";
|
2021-10-04 15:34:37 +00:00
|
|
|
import { Colors } from "constants/Colors";
|
2021-03-15 12:17:56 +00:00
|
|
|
|
|
|
|
|
export default styled(Switch)`
|
|
|
|
|
&&&&& input:checked ~ span {
|
2021-10-04 15:34:37 +00:00
|
|
|
background: ${Colors.GREY_10};
|
2021-03-15 12:17:56 +00:00
|
|
|
}
|
|
|
|
|
`;
|