react-native-gifted-chat
Version:
The most complete chat UI for React Native
9 lines (6 loc) • 330 B
text/typescript
const styleString = (color: string) => `color: ${color}; font-weight: bold`
const headerLog = '%c[react-native-gifted-chat]'
export const warning = (...args: unknown[]) =>
console.log(headerLog, styleString('orange'), ...args)
export const error = (...args: unknown[]) =>
console.log(headerLog, styleString('red'), ...args)