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