UNPKG

@atlaskit/profilecard

Version:

A React component to display a card with user information.

12 lines (11 loc) 326 B
import React from 'react'; interface CoverImageProps { src: string; alt?: string; isDisabled?: boolean; } /** * This is instead of using background-image in CSS as design-system doesn't support that */ export declare const CoverImage: ({ src, alt, isDisabled }: CoverImageProps) => React.JSX.Element; export {};