PromucFlow_constructor/app/client/src/components/designSystems/blueprint/CalloutComponent.tsx

12 lines
264 B
TypeScript
Raw Normal View History

2020-02-12 08:23:50 +00:00
import styled from "styled-components";
import { Callout } from "@blueprintjs/core";
import { Colors } from "constants/Colors";
const CalloutComponent = styled(Callout)`
&& {
background-color: ${Colors.WHITE_SMOKE};
}
`;
export default CalloutComponent;