style: in style label

This commit is contained in:
RiO
2025-01-11 14:26:23 +05:30
parent f29cdf51e7
commit b53bed9e91

View File

@@ -37,6 +37,7 @@ export function PackageCard({ package: pkg }: PackageCardProps) {
<ExpandButton <ExpandButton
expanded={expanded} expanded={expanded}
onClick={() => setExpanded(!expanded)} onClick={() => setExpanded(!expanded)}
aria-label={expanded ? 'Collapse package details' : 'Expand package details'}
/> />
</div> </div>
</div> </div>
@@ -51,4 +52,4 @@ export function PackageCard({ package: pkg }: PackageCardProps) {
)} )}
</div> </div>
); );
} }