UNPKG

@atlaskit/profilecard

Version:

A React component to display a card with user information.

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