PromucFlow_constructor/app/client/src/components/designSystems/blueprint/CalloutComponent.tsx
2020-12-24 10:02:25 +05:30

12 lines
320 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;