import React from 'react'; import clsx from 'clsx'; import styles from './instructions.scss'; export default function OsInstruction({ className, logo, label, onClick, }: { className: string; logo: string; label: string; onClick: (event: React.MouseEvent) => void; }) { return (
{label}
{label}
); }