@clubmed/trident-ui
Version:
Shared ClubMed React UI components
14 lines (13 loc) • 327 B
TypeScript
import type { FunctionComponent } from 'react';
interface HamburgerIconProps {
/**
* Width of the HamburgerIcon
*/
width?: string;
/**
* Whether the HamburgerIcon is active or not
*/
isActive?: boolean;
}
export declare const HamburgerIcon: FunctionComponent<HamburgerIconProps>;
export {};