@veracity/vui
Version:
Veracity UI is a React component library crafted for use within Veracity applications and pages. Based on Styled Components and @xstyled.
23 lines (20 loc) • 551 B
JavaScript
import { css } from "../core/styled.js";
//#region src/tag/tagPillBase.css.ts
/** Shared by `Tag` and `TagToggle`: base layout for a pill-shaped, icon+label control. */
const tagPillBaseCss = css`
align-items: center;
display: inline-flex;
font-weight: medium;
justify-content: center;
line-height: 1;
position: relative;
transition-duration: fast;
width: fit-content;
&:focus {
outline: none;
}
`;
//#endregion
export { tagPillBaseCss };
globalThis.__vuiVersion__ = "5.4.0-alpha"
//# sourceMappingURL=tagPillBase.css.js.map