@xo-union/tk-component-header-nav
Version:
10 lines (9 loc) • 375 B
TypeScript
import React from 'react';
import { InteractiveIconProps, IconProps } from '@xo-union/tk-component-icons';
export declare const FavoritesLink: ({ isFilled, ...props }: FavoritesProps) => React.JSX.Element;
export type FavoritesProps = ({
isFilled?: boolean;
href: string;
} & InteractiveIconProps<any, 'a'>) | ({
isFilled?: boolean;
} & Omit<IconProps, 'href'>);