2020-02-12 08:23:50 +00:00
|
|
|
import styled from "styled-components";
|
|
|
|
|
import { Callout } from "@blueprintjs/core";
|
|
|
|
|
import { Colors } from "constants/Colors";
|
|
|
|
|
|
2020-05-28 18:10:26 +00:00
|
|
|
const CalloutComponent = styled(Callout)<{ background?: string }>`
|
2020-02-12 08:23:50 +00:00
|
|
|
&& {
|
2020-12-24 04:32:25 +00:00
|
|
|
background-color: ${(props) => props.background || Colors.WHITE_SMOKE};
|
2020-02-12 08:23:50 +00:00
|
|
|
}
|
|
|
|
|
`;
|
|
|
|
|
|
|
|
|
|
export default CalloutComponent;
|