mirror of
https://github.com/remvze/moodist.git
synced 2025-12-17 00:44:14 +00:00
18 lines
357 B
TypeScript
18 lines
357 B
TypeScript
import { IoMdFlower } from 'react-icons/io/index';
|
|
|
|
import { Item } from '../item';
|
|
|
|
interface BreathingExerciseProps {
|
|
open: () => void;
|
|
}
|
|
|
|
export function BreathingExercise({ open }: BreathingExerciseProps) {
|
|
return (
|
|
<Item
|
|
icon={<IoMdFlower />}
|
|
label="Breathing Exercise"
|
|
shortcut="Shift + B"
|
|
onClick={open}
|
|
/>
|
|
);
|
|
}
|