import React, { ReactNode } from "react"; import { Box } from "../../Box"; export interface SelectStatusProps { children: ReactNode; } export const SelectStatus = ({ children }: SelectStatusProps) => { return {children}; };