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