UNPKG

@cometchat/chat-uikit-react-native

Version:

Ready-to-use Chat UI Components for React Native

15 lines (13 loc) 338 B
import { BaseStyle, BaseStyleInterface } from "../../shared/base"; export interface StickerStyleInterface extends BaseStyle {} export class StickerStyle extends BaseStyle { constructor({ height = 100, width = 100, }: BaseStyleInterface) { super({ height, width }); } }