Components
Navigation link for use within text that respects line breaks and text flow. Works with both href and onClick (rendering an anchor or button tag), offers underline and plain variants, primary/positive/critical/warning/inherit colors, a disabled state and an optional icon for standalone usage.
npx @21st-dev/cli add reshaped/reshaped-linkLoading preview...
import { Reshaped, View } from "reshaped/bundle";
import Link from "@/components/ui/reshaped-link";
export default function Demo() {
return (
<Reshaped theme="slate">
<div style={{ margin: "0 auto", padding: 24, display: "flex", justifyContent: "center" }}>
<View gap={3} direction="row" align="center">
<Link color="critical" href="#">
Critical color
</Link>
<Link color="positive" href="#">
Positive color
</Link>
<Link color="warning" href="#">
Warning color
</Link>
<View padding={2} backgroundColor="neutral" borderRadius="small">
<Link color="inherit" href="#">
Inherited color
</Link>
</View>
</View>
</div>
</Reshaped>
);
}
Loading preview...
Loading preview...
Loading preview...
Loading preview...
Loading preview...