outline-text
efferd-/outline-textFreeComponent
Outline text component.
Install it
npx shadcn@latest add http://efferd.com/r/outline-text.jsonSource
1import { cn } from "@/lib/utils";2import type React from "react";34type OutlineTextProps = React.ComponentProps<"span"> & {5 strokeWidth?: string;6};78export function OutlineText({9 children,10 className = "",11 strokeWidth = "1px",12 style,13 ...props14}: OutlineTextProps) {15 return (16 <span17 className={cn(18 "inline-block bg-clip-text font-extrabold text-transparent",19 className20 )}21 style={{22 WebkitTextStroke: strokeWidth,23 WebkitTextFillColor: "transparent",24 WebkitTextStrokeColor: "currentColor",25 WebkitBackgroundClip: "text",26 ...style,27 }}28 {...props}29 >30 {children}31 </span>32 );33}
Files it writes
More from efferd
All 201 items| Component | Registry | Kind | Access | Installs | Command |
|---|---|---|---|---|---|
| apple-iconapple-icon | efferd | Components | Free | no deps | |
| auth-dividerauth-divider | efferd | Components | Free | no deps | |
| copy-buttoncopy-button | efferd | Components | Free | no deps | |
| decor-icondecor-icon | efferd | Components | Free | no deps | |
| discord-icondiscord-icon | efferd | Components | Free | no deps | |
| facebook-iconfacebook-icon | efferd | Components | Free | no deps | |
| figma-iconfigma-icon | efferd | Components | Free | no deps | |
| formaterformater | efferd | Components | Free | no deps |
