feat: add Accounts List Card to Calendar Settings (#4129)

Closes #4061
This commit is contained in:
Thaïs
2024-02-22 07:22:49 -03:00
committed by GitHub
parent 8425ce4987
commit 5a692fbaeb
11 changed files with 230 additions and 194 deletions

View File

@ -0,0 +1,14 @@
import { useTheme } from '@emotion/react';
import IconGoogleCalendarRaw from '../assets/google-calendar.svg?react';
type IconGoogleCalendarProps = {
size?: number;
};
export const IconGoogleCalendar = (props: IconGoogleCalendarProps) => {
const theme = useTheme();
const size = props.size ?? theme.icon.size.lg;
return <IconGoogleCalendarRaw height={size} width={size} />;
};