import { ActionBox } from './ActionBox'; import { NeutralCircleContainer } from './SharedComponents'; import type { PersonalDashboardSchemaProjectOwnersItem } from 'openapi'; import type { FC } from 'react'; import { AvatarGroupFromOwners } from 'component/common/AvatarGroupFromOwners/AvatarGroupFromOwners'; export const AskOwnerToAddYouToTheirProject: FC<{ owners: PersonalDashboardSchemaProjectOwnersItem[]; }> = ({ owners }) => { return ( 2 Ask a project owner to add you to their project } > {owners.length ? ( <>

Project owners in Unleash:

) : (

There are no project owners in Unleash to ask for access.

)}
); };