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