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