// The type 'faux' is used when we want to make a non-button element "look like" a button export type ButtonType = "button" | "submit" | "reset" | "faux" | ""; export type ButtonSize = "small" | "large" | "";