You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

26 lines
765 B

import React from 'react';
import { Tooltip } from 'antd';
export default () => {
const now = new Date();
const isChristmas = now.getMonth() === 11 && now.getDate() === 25;
return (
isChristmas && (
<Tooltip title="🎅🏻 Merry Christmas!">
<div className="santa">
<div className="santa-body">
<div className="santa-head">
<div className="santa-ear" />
<div className="santa-ear" />
<div className="santa-hat" />
<div className="santa-eye" />
<div className="santa-eye" />
<div className="santa-nose" />
<div className="santa-mouth" />
</div>
</div>
</div>
</Tooltip>
)
);
};