--- import Icon from '@/atoms/icon'; import Typography from '@/atoms/typography.astro'; import type { LevelledSkill } from '@/types/skills-section'; import SkillLevel from './skill-level.astro'; export interface Props extends LevelledSkill {} const { url, icon, iconColor, name, level } = Astro.props; const IconWrapper = url ? 'a' : 'div'; ---
{name}