mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-14 11:53:49 +00:00
bf7ca81e02
* Operator Layout
15 lines
337 B
TypeScript
15 lines
337 B
TypeScript
import { BiTargetLock } from '@react-icons/all-files/bi/BiTargetLock';
|
|
|
|
import style from './focusBlock.module.scss';
|
|
|
|
export default function FocusBlock() {
|
|
return (
|
|
<button className={style.focusBlock}>
|
|
<div className={style.focusButton}>
|
|
<BiTargetLock size={20} />
|
|
Follow
|
|
</div>
|
|
</button>
|
|
);
|
|
}
|