mirror of
https://github.com/elyby/accounts-frontend.git
synced 2024-12-05 04:59:26 +05:30
24 lines
506 B
TypeScript
24 lines
506 B
TypeScript
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<any>) => void;
|
|
}) {
|
|
return (
|
|
<div className={clsx(styles.osTile, className)} onClick={onClick}>
|
|
<img className={styles.osLogo} src={logo} alt={label} />
|
|
<div className={styles.osName}>{label}</div>
|
|
</div>
|
|
);
|
|
}
|