16 lines
324 B
JavaScript
16 lines
324 B
JavaScript
import { createStyleSheet } from '../../styles';
|
|
|
|
/**
|
|
* The style of the avatar and participant view UI (components).
|
|
*/
|
|
export const styles = createStyleSheet({
|
|
/**
|
|
* ParticipantView style.
|
|
*/
|
|
participantView: {
|
|
alignItems: 'stretch',
|
|
flex: 1,
|
|
justifyContent: 'center'
|
|
}
|
|
});
|