mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-25 19:50:05 +08:00
27 lines
765 B
JavaScript
27 lines
765 B
JavaScript
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>
|
|
)
|
|
);
|
|
};
|