import { useState } from 'react' import { LogoProps } from '@dao-dao/types/components/Logo' import { Logo } from './Logo' export interface RotatableLogoProps extends LogoProps { initialRotation: number } export const RotatableLogo = ({ initialRotation, ...props }: RotatableLogoProps) => { const [rotation, setRotation] = useState(initialRotation) return ( ) }