rustlanges-components 0.1.0

RustLangES components library
Documentation
import { registerCase } from "@rustlanges/showcase";
import { Input } from "./input";

registerCase("Input", {
  props: {
    placeholder: {
      kind: "string",
      default: "Input",
    },
    icon: "icon",
    disabled: "boolean",
    hasError: "boolean",
    errorMessage: {
      kind: "string",
      default: "Error",
    },
  },
  component: Input,
});