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