import React from "react"; import { IconButton } from "theme-ui"; import BlendOnIcon from "../../../icons/BlendOnIcon"; import BlendOffIcon from "../../../icons/BlendOffIcon"; function AlphaBlendToggle({ useBlending, onBlendingChange }) { return ( onBlendingChange(!useBlending)} > {useBlending ? : } ); } export default AlphaBlendToggle;