PromucFlow_constructor/app/client/src/components/designSystems/blueprint/CalloutComponent.tsx
2020-05-28 18:10:26 +00:00

12 lines
318 B
TypeScript

import styled from "styled-components";
import { Callout } from "@blueprintjs/core";
import { Colors } from "constants/Colors";
const CalloutComponent = styled(Callout)<{ background?: string }>`
&& {
background-color: ${props => props.background || Colors.WHITE_SMOKE};
}
`;
export default CalloutComponent;