mattermost-mobile/app/components/user_status/__snapshots__/user_status.test.js.snap
Dean Whillier fb8238ab0b
[MM-37553] Update default themes (#5648)
* new themes and theme type updates

* update theme processing

port newer functionality from webapp

* update theme UI

including new svg-based thumbnail

* lint fixes

* update snapshots and tests

* update theme tile border approach

* remove unused path component

* remove old variable typo

* remove old variable type from theme type

* lint and snapshot updates

* update snapshots
2021-09-03 10:50:24 -04:00

53 lines
955 B
Text

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`UserStatus should match snapshot, away status 1`] = `
<CompassIcon
name="clock"
style={
Object {
"color": "#ffbc1f",
"fontSize": 32,
}
}
testID="user_status.icon.away"
/>
`;
exports[`UserStatus should match snapshot, dnd status 1`] = `
<CompassIcon
name="minus-circle"
style={
Object {
"color": "#d24b4e",
"fontSize": 32,
}
}
testID="user_status.icon.dnd"
/>
`;
exports[`UserStatus should match snapshot, online status 1`] = `
<CompassIcon
name="check-circle"
style={
Object {
"color": "#3db887",
"fontSize": 32,
}
}
testID="user_status.icon.online"
/>
`;
exports[`UserStatus should match snapshot, should default to offline status 1`] = `
<CompassIcon
name="circle-outline"
style={
Object {
"color": "rgba(184,184,184,0.64)",
"fontSize": 32,
}
}
testID="user_status.icon.offline"
/>
`;