UNPKG

vroom-react

Version:
25 lines (23 loc) 658 B
export const participantsStyle = (arg?: { color: string, backgroundColor: string, }): object => { return { cursor: 'pointer', textAlign: 'center', color: arg?.color || '#fff', display: 'flex', flexDirection: 'column', justifyContent: 'center', backgroundColor: arg?.color || '#000', position: 'relative', } } export const participantsDisplayNameStyle = (arg?: { fontFamily: string, fontSize: string, }): object => { return { position: 'absolute', top: 0, left: 0, paddingTop: '10px', paddingLeft: '10px', fontFamily: arg?.fontFamily || 'sans-serif', fontSize: arg?.fontSize || '18px', } }