mirror of
https://github.com/System-End/site.git
synced 2026-04-19 22:05:11 +00:00
11 lines
255 B
JavaScript
11 lines
255 B
JavaScript
import Sparkles from '../sparkles'
|
|
|
|
const Amount = ({amount}) => (
|
|
<Sparkles sx={{
|
|
WebkitTextStroke: 'currentColor',
|
|
WebkitTextStrokeWidth: ['2px', '3px'],
|
|
WebkitTextFillColor: 'transparent'
|
|
}}>{amount}</Sparkles>
|
|
)
|
|
|
|
export default Amount
|