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