import * as React from "react"; import styled from "@emotion/styled"; import { color, ColorInput } from "./color.js"; type RectProps = React.SVGProps<"rect">; export interface BackgroundProps { height: RectProps["height"]; width: RectProps["width"]; fill: ColorInput; } export const Background: React.FunctionComponent = props => { return ( ); }; const StyledBackground = styled.rect``;