starling-devex 0.1.2

Starling: a local dev orchestrator with a central daemon, shared named-URL proxy, and a k9s-style TUI (a Rust port of Tilt + portless)
import React from "react"
import styled from "styled-components"
import { ButtonMixin } from "./ButtonMixin"

let ButtonInputRoot = styled.input`
  ${ButtonMixin}
  border: 0;
`

type ButtonLinkProps = {
  value: string
  type: string
  onClick?: () => void
}

function ButtonInput(props: ButtonLinkProps) {
  return <ButtonInputRoot {...props} />
}

export default ButtonInput