Files
mue/src/components/widgets/reminder/Reminder.jsx
alexsparkes c3df2d7b23 feat: add data section to advanced with sync
Co-authored-by: David Ralph <me@davidcralph.co.uk>
2022-05-01 22:44:15 +01:00

35 lines
880 B
JavaScript

import { PureComponent } from 'react';
import './reminder.scss';
import Tooltip from '../../helpers/tooltip/Tooltip';
import { MdClose, MdSnooze, MdWork } from 'react-icons/md';
export default class Reminder extends PureComponent {
render() {
return (
<div className="reminder">
<div
className="identifier"
style={{
backgroundColor: localStorage.getItem('reminderColour') || 'orange',
}}
>
<MdWork />
</div>
<div className="content">
<span className="title">Reminder</span>
<span className="subtitle">Time</span>
</div>
<div className="icons">
<Tooltip title="Remove">
<MdClose />
</Tooltip>
<Tooltip title="Snooze">
<MdSnooze />
</Tooltip>
</div>
</div>
);
}
}