IconsCount.tsx 197 B

123456789
  1. import { iconsCount, iconsCountRounded } from '@/config/site';
  2. export default function IconsCount({ rounded = false }) {
  3. if (rounded) {
  4. return iconsCountRounded;
  5. }
  6. return iconsCount;
  7. }