src/components/ui/Roster/RosterName.tsx (11 lines of code) (raw):

// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 import React from 'react'; import { StyledName } from './Styled'; export interface RosterNameProps { name: string; subtitle?: string; } const RosterName = ({ name, subtitle }: RosterNameProps) => ( <StyledName> <div className="ch-name">{name}</div> {subtitle && <div className="ch-subtitle">{subtitle}</div>} </StyledName> ); export default RosterName;