Copyright
Displays a copyright notice.
Examples
Basic
View SourceCopyright © 2025export function Basic() { return <Copyright /> }
Hide Label
View Source© 2025 souporseriousexport function HideLabel() { return ( <div style={{ display: 'flex' }}> <Copyright showLabel={false} /> souporserious </div> ) }
Start Year
View SourceCopyright © 2020-2025 JSXUIexport function StartYear() { return ( <div style={{ display: 'flex' }}> <Copyright startYear={2020} /> JSXUI </div> ) }
API Reference
Copyright
({ startYear, showLabel, }: { startYear?: number; showLabel?: boolean; }) => JSX.Element
Displays a copyright notice.
Parameters
Properties
startYear
number | undefined
showLabel
boolean | undefined
= true
Returns
ElementLast updated