UNPKG

vroom-react

Version:
18 lines (17 loc) 438 B
export const displayNameAttendeesStyle = (arg?: { color: string, fontFamily: string, fontSize: string, backgroundColor: string, }): object => { return { textAlign: 'center', color: arg?.color || '#fff', fontFamily: arg?.fontFamily || 'sans-serif', fontSize: arg?.fontSize || '18px', display: 'flex', flexDirection: 'column', justifyContent: 'center', backgroundColor: arg?.color || '#000', } }