UNPKG

hologram-sticker

Version:

A React component library for creating holographic sticker effects

10 lines (9 loc) 228 B
import React from 'react'; export interface WordmarkProps { src: string; alt?: string; position?: 'top' | 'bottom'; className?: string; } declare const Wordmark: React.FC<WordmarkProps>; export default Wordmark;