Some checks failed
Close stale issues and PRs / stale (push) Has been cancelled
21 lines
452 B
TypeScript
21 lines
452 B
TypeScript
import BaseTheme from '../../../base/ui/components/BaseTheme.native';
|
|
|
|
export default {
|
|
displayNameBackdrop: {
|
|
alignSelf: 'center',
|
|
backgroundColor: BaseTheme.palette.ui01,
|
|
borderRadius: BaseTheme.shape.borderRadius,
|
|
padding: 6
|
|
},
|
|
|
|
displayNamePadding: {
|
|
paddingRight: 6
|
|
},
|
|
|
|
displayNameText: {
|
|
color: BaseTheme.palette.text01,
|
|
fontSize: 14,
|
|
fontWeight: 'bold'
|
|
}
|
|
};
|