import { Box, Divider, HStack, Text } from '@metafam/ds'; import { PlayerFragmentFragment } from 'graphql/autogen/types'; import React from 'react'; import { FaClock } from 'react-icons/fa'; import { PlayerTimeZone } from '../PlayerTimeZone'; type Props = { player: PlayerFragmentFragment }; export const PlayerCollab: React.FC = ({ player }) => ( } > Availability {`${player.availability_hours || '0'} h/week`} );