import { IStylableProps } from '../Generic.types'; export interface IBusinessCardProps extends IStylableProps { /** * The name of the person. */ name: string; /** * The company name to which the person belongs. */ company?: string; }