mirror of
https://github.com/TronoSfera/Law.git
synced 2026-05-18 10:03:45 +03:00
51 lines
1.1 KiB
JavaScript
51 lines
1.1 KiB
JavaScript
export function RefreshIcon() {
|
|
return (
|
|
<svg className="ui-glyph" viewBox="0 0 24 24" aria-hidden="true">
|
|
<path d="M21 12a9 9 0 1 1-2.64-6.36" />
|
|
<polyline points="21 3 21 9 15 9" />
|
|
</svg>
|
|
);
|
|
}
|
|
|
|
export function FilterIcon() {
|
|
return (
|
|
<svg className="ui-glyph" viewBox="0 0 24 24" aria-hidden="true">
|
|
<path d="M3 5h18l-7 8v5l-4 2v-7z" />
|
|
</svg>
|
|
);
|
|
}
|
|
|
|
export function AddIcon() {
|
|
return (
|
|
<svg className="ui-glyph" viewBox="0 0 24 24" aria-hidden="true">
|
|
<path d="M12 5v14" />
|
|
<path d="M5 12h14" />
|
|
</svg>
|
|
);
|
|
}
|
|
|
|
export function PrevIcon() {
|
|
return (
|
|
<svg className="ui-glyph" viewBox="0 0 24 24" aria-hidden="true">
|
|
<path d="M15 18l-6-6 6-6" />
|
|
</svg>
|
|
);
|
|
}
|
|
|
|
export function NextIcon() {
|
|
return (
|
|
<svg className="ui-glyph" viewBox="0 0 24 24" aria-hidden="true">
|
|
<path d="M9 18l6-6-6-6" />
|
|
</svg>
|
|
);
|
|
}
|
|
|
|
export function DownloadIcon() {
|
|
return (
|
|
<svg className="ui-glyph" viewBox="0 0 24 24" aria-hidden="true">
|
|
<path d="M12 4v11" />
|
|
<path d="M8 11l4 4 4-4" />
|
|
<path d="M5 20h14" />
|
|
</svg>
|
|
);
|
|
}
|