import * as React from 'react'; export interface SoccerBall24Props extends React.SVGProps { ariaLabel?: string } export default function SoccerBall24({ ariaLabel, ...props }: SoccerBall24Props) { return ( ); }