Copyright

Displays a copyright notice.

Examples

  • Copyright © 2025
    export function Basic() {
      return <Copyright />
    }
  • Hide Label

    View Source
    © 2025 souporserious
    export function HideLabel() {
      return (
        <div style={{ display: 'flex' }}>
          <Copyright showLabel={false} /> souporserious
        </div>
      )
    }
  • Start Year

    View Source
    Copyright © 2020-2025 JSXUI
    export function StartYear() {
      return (
        <div style={{ display: 'flex' }}>
          <Copyright startYear={2020} /> JSXUI
        </div>
      )
    }

API Reference

({ startYear, showLabel, }: { startYear?: number; showLabel?: boolean; }) => JSX.Element

Displays a copyright notice.

Parameters
Properties

startYear

number | undefined

showLabel

boolean | undefined= true
Returns
Element