ok
This commit is contained in:
18
src/components/CountUpNumber.tsx
Normal file
18
src/components/CountUpNumber.tsx
Normal file
@@ -0,0 +1,18 @@
|
||||
'use client'
|
||||
|
||||
import CountUp from 'react-countup'
|
||||
import { H2 } from './Texts'
|
||||
|
||||
interface CountUpNumberProps {
|
||||
end: number
|
||||
className?: string
|
||||
color?: 'light' | 'primary' | 'secondary' | 'custom'
|
||||
}
|
||||
|
||||
export function CountUpNumber({ end, className, color }: CountUpNumberProps) {
|
||||
return (
|
||||
<H2 color={color} className={className}>
|
||||
<CountUp end={end} duration={2.75} separator="," />
|
||||
</H2>
|
||||
)
|
||||
}
|
Reference in New Issue
Block a user