40 lines
1.4 KiB
XML
40 lines
1.4 KiB
XML
/*
|
|
* Copyright (c) 2023 Huawei Technologies Co.,Ltd.
|
|
*
|
|
* openInula is licensed under Mulan PSL v2.
|
|
* You can use this software according to the terms and conditions of the Mulan PSL v2.
|
|
* You may obtain a copy of Mulan PSL v2 at:
|
|
*
|
|
* http://license.coscl.org.cn/MulanPSL2
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND,
|
|
* EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT,
|
|
* MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE.
|
|
* See the Mulan PSL v2 for more details.
|
|
*/
|
|
|
|
export default function Select() {
|
|
return (
|
|
<svg width='1rem' height='1rem' viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'>
|
|
<g fill='none' fill-rule='evenodd'>
|
|
<g stroke='currentColor'>
|
|
<path
|
|
stroke-width='.291'
|
|
fill='currentColor'
|
|
fill-rule='nonzero'
|
|
stroke-linecap='round'
|
|
stroke-linejoin='round'
|
|
d='M6 6l3.014 9 2.508-3.533L15 8.791z'
|
|
></path>
|
|
<path stroke-width='2' d='M10.417 10.417l2.87 2.87L15 15'></path>
|
|
</g>
|
|
<path
|
|
d='M12.188 0A2.812 2.812 0 0 1 15 2.813V5h-1V2.857A1.857 1.857 0 0 0 12.143 1H2.857A1.857 1.857 0 0 0 1 2.857v9.286C1 13.169 1.831 14 2.857 14H5v1H2.812A2.812 2.812 0 0 1 0 12.187V2.813A2.812 2.812 0 0 1 2.813 0h9.374z'
|
|
fill='currentColor'
|
|
fill-rule='nonzero'
|
|
></path>
|
|
</g>
|
|
</svg>
|
|
);
|
|
}
|