CalendarBtn.js 346 Bytes
Newer Older
Kim, Subin's avatar
Kim, Subin committed
1
2
3
4
5
6
7
8
9
10
11
12
import styles from "./buttons.module.scss";

const CalendarBtn = ({ date }) => {
    return (
        <div className={`d-inline-block position-relative text-center ${styles.calendar}`}>
            <strong className="position-absolute top-0 text-white">Today</strong>
            <span>10</span>
        </div>
    )
}

export default CalendarBtn