diff --git a/packages/tags/src/elements/Tag.tsx b/packages/tags/src/elements/Tag.tsx index 902b8e8abfc..647e2447cbf 100644 --- a/packages/tags/src/elements/Tag.tsx +++ b/packages/tags/src/elements/Tag.tsx @@ -11,16 +11,19 @@ import { StyledTag, StyledAvatar } from '../styled'; import Close from './Close'; interface ITagProps extends HTMLAttributes { + /** Adjusts font size and padding */ size?: 'small' | 'medium' | 'large'; /** - * Apply a custom tag hue – typically constrained to a - * [palette](https://zendeskgarden.github.io/react-components/theming/#palette) - * hue, but with the ability to override using any hex value. + * Sets the color of the tag. Refer to + * [PALETTE](/components/palette#palette) + * for available colors. Accepts any hex value. */ hue?: string; + /** Applies pill styling */ isPill?: boolean; + /** Applies styles to round the tag */ isRound?: boolean; - /** Style using regular (non-bold) font weight */ + /** Applies regular (non-bold) font weight */ isRegular?: boolean; }