fix: '+' button display in sidebar in Safari

This commit is contained in:
Tom Moor
2021-12-19 17:43:46 -08:00
parent 36c0372d62
commit 4998421cc0

View File

@@ -1,7 +1,7 @@
import styled from "styled-components";
const Button = styled.button.attrs((props) => ({
type: props.type || "button",
type: "type" in props ? props.type : "button",
}))<{
width?: number;
height?: number;