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