import type * as React from 'react' import type { IconSvgProps } from '../types' export const GithubIcon: React.FC = ({ size = 24, width, height, ...props }) => { return ( // biome-ignore lint/a11y/noSvgWithoutTitle: oeps ) } export const MoonFilledIcon = ({ size = 24, width, height, ...props }: IconSvgProps) => ( ) export const SunFilledIcon = ({ size = 24, width, height, ...props }: IconSvgProps) => ( ) export const HeartFilledIcon = ({ size = 24, width, height, ...props }: IconSvgProps) => ( )