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