UNPKG

hologram-sticker

Version:

A React component library for creating holographic sticker effects

10 lines (9 loc) 236 B
import React from 'react'; export interface BackgroundProps { children?: React.ReactNode; src?: string; alt?: string; className?: string; } declare const Background: React.FC<BackgroundProps>; export default Background;