/** The theme trio — one mark per option of the light / dark / system control. */
import { Icon, type IconComponent } from './icon-frame';
/** Light theme. */
export const SunIcon: IconComponent = (props) => (
);
/** Dark theme. */
export const MoonIcon: IconComponent = (props) => (
);
/** Follow the operating system. */
export const MonitorIcon: IconComponent = (props) => (
);