import type { DOMAttributes, CSSProperties } from 'react'; type IconProps = { color?: string; style?: CSSProperties; } & DOMAttributes; export const LogoIcon = ({ color, style: propsStyle = {}, ...props }: IconProps) => { const style = { fill: color, ...propsStyle }; return ( ); }; export const EdgelessIcon = ({ color, style: propsStyle = {}, ...props }: IconProps) => { const style = { fill: color, ...propsStyle }; return ( ); }; export const MoonIcon = ({ color, style: propsStyle = {}, ...props }: IconProps) => { const style = { fill: color, ...propsStyle }; return ( ); }; export const PaperIcon = ({ color, style: propsStyle = {}, ...props }: IconProps) => { const style = { fill: color, ...propsStyle }; return ( ); }; export const SunIcon = ({ color, style: propsStyle = {}, ...props }: IconProps) => { const style = { fill: color, ...propsStyle }; return ( ); }; export const MoreIcon = ({ color, style: propsStyle = {}, ...props }: IconProps) => { const style = { fill: color, ...propsStyle, transform: 'rotate(90deg)' }; return ( ); }; export const ExportIcon = ({ color, style: propsStyle = {}, ...props }: IconProps) => { const style = { fill: color, ...propsStyle }; return ( ); };