import "./loader.scss"; export function PlayLoader({ fancy = true }: { fancy?: boolean }) { return (
{fancy ? (
) : ( )}
); }