Striped Pattern (Right)

PreviousNext

Example showing a background striped pattern slanting to the right using SVG.

Docs
magicuiexample

Preview

Loading preview…
registry/example/striped-pattern-right.tsx
import { StripedPattern } from "@/registry/magicui/striped-pattern"

export default function StripedPatternRight() {
  return (
    <div className="relative flex h-[300px] w-full flex-col items-center justify-center overflow-hidden rounded-lg border">
      <StripedPattern direction="right" />
    </div>
  )
}

Installation

npx shadcn@latest add @magicui/striped-pattern-right

Usage

import { StripedPatternRight } from "@/components/striped-pattern-right"
<StripedPatternRight />