and-design-components-library
Version:
Library of reusable React components based on AND Digital design system.
36 lines (35 loc) • 618 B
TypeScript
import { ChangeEvent } from 'react';
export interface BioCardRowProps {
/**
* ANDi's full name
*/
name: string;
/**
* ANDi's job title
*/
jobTitle: string;
/**
* ANDi's level
*/
level: string;
/**
* ANDi's club
*/
club: string;
/**
* ANDi's squad
*/
squad: string;
/**
* ANDi's tools
*/
tools?: string[];
/**
* ANDi's profile picture URL
*/
avatarUrl: string;
/**
* OnClick event
*/
onClick?: (e: ChangeEvent<HTMLInputElement>) => void;
}