type IconProps = {
size?: number
strokeWidth?: number
class?: string
"aria-label"?: string
}
export function SearchIcon({ size = 24, strokeWidth = 2, ...props }: IconProps) {
return (
)
}
export function SunIcon({ size = 24, strokeWidth = 2, ...props }: IconProps) {
return (
)
}
export function MoonIcon({ size = 24, strokeWidth = 2, ...props }: IconProps) {
return (
)
}
export function MenuIcon({ size = 24, strokeWidth = 2, ...props }: IconProps) {
return (
)
}
export function ChevronDownIcon({ size = 24, strokeWidth = 2, ...props }: IconProps) {
return (
)
}