import React from "react"; interface Props { style?: React.CSSProperties; } export default function CalendarIcon({ style }: Props) { return ( ); }