diff --git a/web/src/icons/Score.jsx b/web/src/icons/Score.jsx new file mode 100644 index 000000000..2abed4b9e --- /dev/null +++ b/web/src/icons/Score.jsx @@ -0,0 +1,20 @@ +import { h } from 'preact'; +import { memo } from 'preact/compat'; + +export function Score({ className = 'h-6 w-6', stroke = 'currentColor', fill = 'currentColor', onClick = () => {} }) { + return ( + + ); +} + +export default memo(Score); diff --git a/web/src/routes/Events.jsx b/web/src/routes/Events.jsx index 9d503cb8b..7d04d3bc4 100644 --- a/web/src/routes/Events.jsx +++ b/web/src/routes/Events.jsx @@ -30,6 +30,7 @@ import TimeAgo from '../components/TimeAgo'; import Timepicker from '../components/TimePicker'; import TimelineSummary from '../components/TimelineSummary'; import TimelineEventOverlay from '../components/TimelineEventOverlay'; +import { Score } from '../icons/Score'; const API_LIMIT = 25; @@ -602,13 +603,10 @@ export default function Events({ path, ...props }) {