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