Co-authored-by: devrk96 <rohit.kumawat@primathon.in> Co-authored-by: hetunandu <hetu@appsmith.com> Co-authored-by: Hetu Nandu <hetunandu@gmail.com> Co-authored-by: Vicky Bansal <67091118+vicky-primathon@users.noreply.github.com> Co-authored-by: nandan.anantharamu <nandan.anantharamu@thoughtspot.com>
9 lines
218 B
TypeScript
9 lines
218 B
TypeScript
import styled from "constants/DefaultTheme";
|
|
import { Switch } from "@blueprintjs/core";
|
|
|
|
export default styled(Switch)`
|
|
&&&&& input:checked ~ span {
|
|
background: ${(props) => props.theme.colors.selected};
|
|
}
|
|
`;
|