import type { BezierComponentProps, SizeProps } from '~/src/types/props' export type StatusType = | 'online' | 'offline' | 'lock' | 'online-crescent' | 'offline-crescent' export type StatusSize = 'm' | 'l' interface StatusOwnProps { /** * Type of Status image. */ type: StatusType } export interface StatusProps extends BezierComponentProps<'div'>, SizeProps, StatusOwnProps {}