2022-11-30 00:29:08 +02:00

23 lines
397 B
TypeScript

import { Moon, Sun, System } from '@components/icons'
interface ThemeIconProps {
theme?: string
width: number
height: number
}
const ThemeIcon = ({ theme, ...props }: ThemeIconProps) => {
switch (theme) {
case 'light':
return <Sun {...props} />
case 'dark':
return <Moon {...props} />
default:
return <System {...props} />
}
}
export default ThemeIcon