UNPKG

breakfast-ui

Version:

Your tasty component library

11 lines (10 loc) 332 B
import Color from "../../../Colors.types"; import React from "react"; export default interface MaterialTextBoxProps extends React.HTMLAttributes<HTMLInputElement> { label: string; accentColor?: Color; borderColor?: Color; styles?: React.CSSProperties; errorMessage?: string; showError?: boolean; }