Website/components/sticker.js

12 lines
389 B
JavaScript
Raw Normal View History

2021-12-21 19:08:36 +00:00
import styles from '../styles/Sticker.module.css'
export default function Sticker(props) {
return (
<div className={styles.Sticker} style={{color: props.txtColor ?? '#ffffff', backgroundColor: props.bgColor ?? 'rgba(36, 36, 49, 0.7)', scale: '1', ...props.style}}>
2021-12-21 22:42:34 +00:00
<script>
</script>
2021-12-21 19:08:36 +00:00
{props.children}
</div>
)
}