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