Copyright

Displays a copyright notice.

Copyright © 2025
import { Copyright } from 'renoun'

export function Basic() {
  return <Copyright />
}

Examples

  • Hide Label

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

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

API Reference