25 lines
737 B
TypeScript
25 lines
737 B
TypeScript
/*
|
|
* Copyright (C) Contributors to the Suwayomi project
|
|
*
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
|
|
*/
|
|
|
|
import SvgIcon from '@mui/material/SvgIcon';
|
|
|
|
export const StandardProgressBarIcon = () => (
|
|
<SvgIcon>
|
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
|
|
<path
|
|
fill="none"
|
|
stroke="currentColor"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
strokeWidth="2"
|
|
d="M4 15h16M7 15v-5m10 5v-5M4 9h16"
|
|
/>
|
|
</svg>
|
|
</SvgIcon>
|
|
);
|