@veracity/vui
Version:
Veracity UI is a React component library crafted for use within Veracity applications and pages. Based on Styled Components and @xstyled.
14 lines (13 loc) • 514 B
TypeScript
import { VuiComponent } from "../core/vui.js";
import "../core/index.js";
import { TagProps } from "./tag.types.js";
//#region src/tag/tag.d.ts
/**
* Displays text, icons or custom content. Can be made interactive or include a
* dismiss affordance. When `isInteractive` (or `onClick` without `onDelete`)
* is set, the tag renders as a `<button>` so it is keyboard-activatable.
*/
declare const Tag: VuiComponent<'span', TagProps>;
//#endregion
export { Tag, Tag as default };
//# sourceMappingURL=tag.d.ts.map