'use client'; import * as React from 'react'; import { Button } from './button.js'; interface MinMaxButtonProps { children?: React.ReactNode; minimizedValue: '0' | '1'; } export function MinMaxButton({ children, minimizedValue }: MinMaxButtonProps) { return ( ); }