mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2025-12-18 20:30:08 +08:00
* feat: 统一并标准化eslint * lint: napcat.webui * lint: napcat.webui * lint: napcat.core * build: fix * lint: napcat.webui * refactor: 重构eslint * Update README.md
11 lines
300 B
TypeScript
11 lines
300 B
TypeScript
import { ChevronRightIcon } from '../icons';
|
|
|
|
const ItemCounter = ({ number }: { number: number }) => (
|
|
<div className='flex items-center gap-1 text-default-400'>
|
|
<span className='text-small'>{number}</span>
|
|
<ChevronRightIcon className='text-xl' />
|
|
</div>
|
|
);
|
|
|
|
export default ItemCounter;
|