feat: use SVG for button icons

ref: N25B-400
This commit is contained in:
Twirre Meulenbelt
2026-01-26 10:09:44 +01:00
parent 470140ebdd
commit 1b0d678826
7 changed files with 51 additions and 5 deletions

View File

@@ -0,0 +1,5 @@
export default function Pause({ fill }: { fill?: string }) {
return <svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px" fill={fill ?? "canvas"}>
<path d="M556.17-185.41v-589.18h182v589.18h-182Zm-334.34 0v-589.18h182v589.18h-182Z"/>
</svg>;
}