@cometchat/chat-uikit-react-native
Version:
Ready-to-use Chat UI Components for React Native
14 lines (10 loc) • 311 B
text/typescript
import { ImageStyle } from "react-native";
export interface StickerConfigurationInterface {
style?: ImageStyle;
}
export class StickerConfiguration implements StickerConfigurationInterface {
style?: ImageStyle;
constructor({ style = {} }: StickerConfigurationInterface) {
this.style = style;
}
}