Vinkas UI

Copyright Text

This is a shadcn/ui type react component that displays the copyright information

Demo

© 2026 Acme Inc. All rights reserved.

  import { CopyrightText } from "@/registry/vinkas/ui/copyright-text"

  export function CopyrightTextDemo() {
    return <CopyrightText companyName="Acme Inc." />
  }

Installation

npx shadcn@latest add @vinkas-ui/copyright-text
Make sure you already have the @vinkas-ui registry added to your components.json file. Read the installation guide for more information.

Properties

PropertyTypeRequiredDescriptionDefault
companyNamestringYesThe name of the company.-
startYearnumberNoThe start year of the copyright.-
endYearnumberNoThe end year of the copyright.new Date().getFullYear()
showRightsbooleanNoWhether to show the rights text.true
rightsTextstringNoThe rights text."All rights reserved."
classNamestringNoThe className to be applied to the component.-