Text Pressure

Animations

Text that responds to mouse pressure with variable font.

Import

import { PixelTextPressure } from "@/components/ui/pixel/animations/pixel-text-pressure"

Usage

PRESS

Component Source

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

"use client";

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

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

export default PixelTextPressure;

Accessibility

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