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