import * as React from "react"; import { IconName } from "reui-icons"; import { Intent } from "./intent"; export const DISPLAYNAME_PREFIX = "REUI"; /** * Alias for all valid HTML props for `
` element. * Does not include React's `ref` or `key`. */ export type HTMLDivProps = React.HTMLAttributes; /** * Alias for all valid HTML props for `` element. * Does not include React's `ref` or `key`. */ export type HTMLInputProps = React.InputHTMLAttributes; /** * A shared base interface for all Blueprint component props. */ export interface IProps { /** A space-delimited list of class names to pass along to a child element. */ className?: string; } export interface IIntentProps { /** Visual intent color to apply to element. */ intent?: Intent; } /** * Interface for a clickable action, such as a button or menu item. * These props can be spready directly to a `