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