import { BORDER_RADIUS, COLORS } from "@heydovetail/ui-components"; import { styled } from "typestyle-react"; export const SelectionMask = styled("div", { background: COLORS.blue, borderRadius: BORDER_RADIUS, bottom: 0, left: 0, opacity: 0.5, position: "absolute", pointerEvents: "none", right: 0, top: 0 });