// RĂ´le : affiche le switch global de position des notifications internes. import React from "react"; import { Icon } from "./Icon.jsx"; export function ToastPositionSwitch({ position, labels, onChange }) { const normalizedPosition = position === "left" ? "left" : "right"; return ( ); }