vcc-ui
Version:
A React library for building user interfaces at Volvo Cars
14 lines (11 loc) • 408 B
TypeScript
import { ForwardRefExoticComponent } from 'react';
import { PropsWithExtend } from '../../types/shared';
export type CardProps = PropsWithExtend<{
selected?: boolean;
}> &
(React.ComponentPropsWithoutRef<'a'> &
React.ComponentPropsWithoutRef<'div'>) &
React.RefAttributes<HTMLAnchorElement | HTMLDivElement>;
/** @deprecated */
export const Card: ForwardRefExoticComponent<CardProps>;
export {};