ClickablePropsinterface

{
	disabled?: boolean | undefined;
	href?: ImmutableURI | Path | URIString | undefined;
	onClick?: ClickableCallback | undefined;
	target?: string | undefined;
	download?: string | undefined;
	title?: string | undefined;
}
PropertyType
.disabledboolean
Whether the clickable is currently disabled.
.hrefImmutableURI
Path
URIString
If present then render this element as an <a> link (takes precidence over onClick).
.onClickClickableCallback
If present then render this element as a <button>
.targetstring
Target, e.g. _blank
.downloadstring
If href is present then this is the suggested filename for downloading.
.titlestring
Title shown on hover.

Props for a thing that can be clicked — either has a string href link or an onClick callback handler.