Skip to content

Commit

Permalink
fix(Popover): arrowColor background color type
Browse files Browse the repository at this point in the history
  • Loading branch information
nathanyoung committed Jun 14, 2024
1 parent a3694e7 commit a9a693a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/Popover/Popover.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import { Placement } from '@popperjs/core';
import FocusTrap from 'focus-trap-react';
import mergeRefs from 'react-merge-refs';
import classNames from 'classnames';
import { BrandColor } from '../../types';
import { BackgroundColor } from '../../types';
import styles from './Popover.module.scss';
import { Box, BoxProps } from '../Box/Box';

Expand All @@ -40,7 +40,7 @@ export type PopoverProps = {
* `background` color applied in the `contentContainerProps`, but can be overwritten
* by passing a specific value here.
*/
arrowColor?: BrandColor;
arrowColor?: BackgroundColor;
/**
* An object matching the interface of the `Box` component props.
* This is useful for styling the tooltip container using all the options available in
Expand Down

0 comments on commit a9a693a

Please sign in to comment.