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