Sliced Text
Sliced Text is a React and Tailwind CSS text component from Kokonut UI, licensed MIT. Copy it and paste it into your project.
Kokonut UI
MIT
text
What it is
Sliced Text is a React and Tailwind CSS text component from Kokonut UI, licensed MIT. Copy it and paste it into your project.
How to use it
Open it in the catalogue, press copy, and paste it into your project. The prompt you copy carries the code and the rules that tell your agent to reproduce it without changing anything.
Five free copies a month. No card.
Needs
npm i motion
Licence
This component comes from Kokonut UI and is redistributed under the MIT licence, which permits commercial use. The copyright notice travels with the code.
Sliced Text
"use client";
/**
* @author: @dorianbaffier
* @description: Sliced Text
* @version: 1.0.0
* @date: 2025-06-26
* @license: MIT
* @website: https://kokonutui.com
* @github: https://github.com/kokonut-labs/kokonutui
*/
import { motion } from "motion/react";
import { cn } from "@/lib/utils";
interface SlicedTextProps {
text: string;
className?: string;
containerClassName?: string;
splitSpacing?: number;
}
const SlicedText: React.FC<SlicedTextProps> = ({
text = "Sliced Text",
className = "",
containerClassName = "",
splitSpacing = 2,
}) => (
<motion.div
className={cn(
"relative inline-block w-full text-center",
containerClassName
)}
initial="default"
whileHover="hover"
>
<motion.div
className={cn("absolute -ml-0.5 w-full text-4xl", className)}
transition={{ duration: 0.1 }}
variants={{
default: {
clipPath: "inset(0 0 50% 0)",
y: -splitSpacing / 2,
opacity: 1,
},
hover: {
clipPath: "inset(0 0 0 0)",
y: 0,
opacity: 0,
},
}}
>
{text}
</motion.div>
<motion.div
className={cn("absolute w-full text-4xl", className)}
transition={{ duration: 0.1 }}
variants={{
default: {
clipPath: "inset(50% 0 0 0)",
y: splitSpacing / 2,
opacity: 1,
},
hover: {
clipPath: "inset(0 0 0 0)",
y: 0,
opacity: 1,
},
}}
>
{text}
</motion.div>
<div className={cn("invisible text-4xl", className)}>{text}</div>
</motion.div>
);
export default SlicedText;