diff --git a/packages/react/src/components/Accordion/Accordion.tsx b/packages/react/src/components/Accordion/Accordion.tsx index 5150d42a08..9d3019ed9d 100644 --- a/packages/react/src/components/Accordion/Accordion.tsx +++ b/packages/react/src/components/Accordion/Accordion.tsx @@ -9,8 +9,7 @@ export type AccordionProps = MergeRight< DefaultProps & HTMLAttributes, { /** - * Accordion background color. Unlike most components, data-color must be specified - * on this element to hava an effect. Otherwise the default is used. + * Accordion background color. * @default neutral */ 'data-color'?: 'subtle' | Color; diff --git a/packages/react/src/components/Card/Card.tsx b/packages/react/src/components/Card/Card.tsx index 9bc6224c3f..5b8b83277c 100644 --- a/packages/react/src/components/Card/Card.tsx +++ b/packages/react/src/components/Card/Card.tsx @@ -11,9 +11,7 @@ export type CardProps = MergeRight< DefaultProps & HTMLAttributes, { /** - * Changes background & border color. Unlike most components, data-color - * must be specified on this element — not an ancestor — to have an effect. - * Otherwise the default is used. + * Changes background & border color. * @default neutral */ 'data-color'?: 'subtle' | CustomColors; diff --git a/packages/react/src/components/Popover/Popover.tsx b/packages/react/src/components/Popover/Popover.tsx index 7820f96ba0..25af1e0930 100644 --- a/packages/react/src/components/Popover/Popover.tsx +++ b/packages/react/src/components/Popover/Popover.tsx @@ -45,8 +45,7 @@ export type PopoverProps = MergeRight< */ placement?: Placement; /** - * The color of the popover. Unlike most components, data-color must be specified - * on this element — not an ancestor — to have an effect. Otherwise the default is used. + * The color of the popover. * @default neutral */ 'data-color'?: Color; diff --git a/packages/react/src/components/Tag/Tag.tsx b/packages/react/src/components/Tag/Tag.tsx index e7336f7966..cf0941933e 100644 --- a/packages/react/src/components/Tag/Tag.tsx +++ b/packages/react/src/components/Tag/Tag.tsx @@ -9,8 +9,7 @@ export type TagProps = MergeRight< DefaultProps & HTMLAttributes, { /** - * Color of the tag. Unlike most components, data-color must be specified on this element - * — not an ancestor — to have an effect. Otherwise the default is used. + * Color of the tag. * @default neutral */ 'data-color'?: Color;