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