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