svrjs-nextjs-website/components/ui/animated-shiny-text.tsx

40 lines
980 B
TypeScript
Raw Permalink Normal View History

2024-06-15 14:55:33 +02:00
import { cn } from "@/lib/utils";
import { CSSProperties, FC, ReactNode } from "react";
interface AnimatedShinyTextProps {
children: ReactNode;
className?: string;
shimmerWidth?: number;
}
const AnimatedShinyText: FC<AnimatedShinyTextProps> = ({
children,
className,
shimmerWidth = 100
2024-06-15 14:55:33 +02:00
}) => {
return (
<p
style={
{
"--shimmer-width": `${shimmerWidth}px`
2024-06-15 14:55:33 +02:00
} as CSSProperties
}
className={cn(
"mx-auto max-w-md text-neutral-600/50 dark:text-neutral-400/50 ",
// Shimmer effect
"animate-shimmer bg-clip-text bg-no-repeat [background-position:0_0] [background-size:var(--shimmer-width)_100%] [transition:background-position_1s_cubic-bezier(.6,.6,0,1)_infinite]",
// Shimmer gradient
"bg-gradient-to-r from-transparent via-black/80 via-50% to-transparent dark:via-white/80",
className
2024-06-15 14:55:33 +02:00
)}
>
{children}
</p>
);
};
export default AnimatedShinyText;