Skip to content

Commit 7f60a87

Browse files
committed
Fix component props type
1 parent 043c70a commit 7f60a87

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

components/SocialShare/SocialShare.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,14 @@ import {
2020
IconTwitter,
2121
IconWhatsApp,
2222
} from '@/icons';
23-
import { type SharingOptions, SocialNetwork } from 'theme-settings';
23+
import { SocialNetwork, ThemeSettings } from 'theme-settings';
2424

2525
import styles from './SocialShare.module.scss';
2626

2727
interface Props {
2828
url: string;
2929
className?: string;
30-
socialNetworks: SharingOptions['sharing_actions'];
30+
socialNetworks: ThemeSettings['sharing_actions'];
3131
thumbnailUrl?: string;
3232
withLabels?: boolean;
3333
}

0 commit comments

Comments
 (0)