Copyright

Examples

  • Copyright © 2024
    import React from 'react'
    import { Copyright } from 'renoun/components'
    
    export function Basic() {
      return <Copyright />
    }
  • Hide Label

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

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

API Reference

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

Displays a copyright notice.

Parameters

Properties

startYear

number | undefined

showLabel

boolean | undefined= true
Return
Element