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