Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions packages/components/common/FakeArrow.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import React from 'react';
import classNames from 'classnames';
import { isSafari } from '@tdesign/common-js/utils/helper';
import { ClassName } from '../common';

import useConfig from '../hooks/useConfig';
Expand All @@ -18,6 +19,7 @@ function FakeArrow(props: {
className={classNames(
`${classPrefix}-fake-arrow`,
{
[`${classPrefix}-fake-arrow--transform`]: isSafari(),
[`${classPrefix}-fake-arrow--active`]: props?.isActive && !props?.disabled,
},
props?.className,
Expand Down
Loading