Sticker Peel

Animations

Draggable sticker with peel-back effect.

Import

import { PixelStickerPeel } from "@/components/ui/pixel/animations/pixel-sticker-peel"

Usage

Component Source

Copy and paste the following code into your project at /src/components/ui/pixel/animations/pixel-sticker-peel.tsx

"use client";

import * as React from "react";
import StickerPeel from "@/components/StickerPeel";

export function PixelStickerPeel(props: any) {
  return (
    <div className="pixel-animation-wrapper">
      <StickerPeel {...props} />
    </div>
  );
}

export default PixelStickerPeel;

Accessibility

This component is built with accessibility in mind, including proper ARIA attributes, keyboard navigation, and focus management.