Introducing a much improved design system with new components in the Appsmith Design System.
10 lines
237 B
TypeScript
10 lines
237 B
TypeScript
import styled from "constants/DefaultTheme";
|
|
import { Switch } from "@blueprintjs/core";
|
|
import { Colors } from "constants/Colors";
|
|
|
|
export default styled(Switch)`
|
|
&&&&& input:checked ~ span {
|
|
background: ${Colors.GREY_10};
|
|
}
|
|
`;
|