UNPKG

@gobistories/gobi-web-integration

Version:

This library will let you put your Gobi stories on your site.

10 lines (9 loc) 293 B
import React from 'react'; import { Sticker } from '../../../../types/story.types'; export interface LinkStickerProps { sticker: Sticker; linkClicked: (linkUrl: string) => void; clickable: boolean; show: boolean; } export declare const LinkSticker: React.FC<LinkStickerProps>;