/* eslint-disable functional/no-class */ /* eslint-disable functional/no-this-expression */ import { useCurrentTheme } from '../../../lib/hooks/useCurrentTheme' import { IconProps } from './IconProps' import React from 'react' export function EmptyLibraryIcon(): JSX.Element { const { currentTheme } = useCurrentTheme() switch (currentTheme) { case 'Sepia': return case 'Apollo': case 'Dark': return case 'Light': return } return } class EmptyLibraryIconDark extends React.Component { render() { return ( ) } } class EmptyLibraryIconLight extends React.Component { render() { return ( ) } } class EmptyLibraryIconSepia extends React.Component { render() { console.log('rendering sepia icon') return ( ) } }