PromucFlow_constructor/app/client/src/components/ads/Switch.tsx
albinAppsmith 31cdfe0fe5
feat: Appsmith design system changes (#8125)
Introducing a much improved design system with new components in the Appsmith Design System.
2021-10-04 21:04:37 +05:30

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};
}
`;