hologram-sticker
Version:
A React component library for creating holographic sticker effects
15 lines (14 loc) • 415 B
TypeScript
import React from 'react';
export interface PatternProps {
children?: React.ReactNode;
className?: string;
maskUrl?: string;
maskSize?: 'contain' | 'cover' | string;
textureUrl?: string;
opacity?: number;
mode?: 'composite' | 'texture-only';
mixBlendMode?: 'hard-light' | 'multiply';
textureSize?: string;
}
declare const Pattern: React.FC<PatternProps>;
export default Pattern;