/** Peer dep imports */ import React from "react"; /** Common Main and Sub styles used for Buttons and Icons */ /** Valid styles for core class, as in `btn--fill` */ export type mainStyles = "primary" | "hollow"; /** Valid styles for sub classing, as in `btn--fill--dark` */ export type subStyles = "dark" | "blue" | "teal" | "purple" | "white" | "grey"; /** HTML divs, as in
*/ export type DivProps = React.HTMLAttributes