@cometchat/chat-uikit-react-native
Version:
Ready-to-use Chat UI Components for React Native
18 lines (14 loc) • 428 B
text/typescript
import { StickerStyle, StickerStyleInterface } from './StickerStyle';
export interface StickerConfigurationInterface {
style?: StickerStyleInterface;
}
export class StickerConfiguration implements StickerConfigurationInterface {
style?: StickerStyleInterface;
constructor({ style }: StickerConfigurationInterface) {
this.style = new StickerStyle({
height: 100,
width: 100,
...style,
});
}
}