export const WidthStandard = ({ className }: { className?: string }) => (
<svg
className={className}
height="1em"
width="1em"
viewBox="0 0 271 271"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<rect x="61" y="70" width="149" height="132" rx="25" fill="currentColor" />
<rect x="60" width="150" height="30" rx="15" fill="currentColor" />
<rect x="60" y="241" width="150" height="30" rx="15" fill="currentColor" />
</svg>
)
export const WidthWide = ({ className }: { className?: string }) => (
<svg
className={className}
height="1em"
width="1em"
viewBox="0 0 271 271"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<rect y="70" width="271" height="132" rx="25" fill="currentColor" />
<rect x="60" width="150" height="30" rx="15" fill="currentColor" />
<rect x="60" y="241" width="150" height="30" rx="15" fill="currentColor" />
</svg>
)
export const WidthFull = ({ className }: { className?: string }) => (
<svg
className={className}
height="1em"
width="1em"
viewBox="0 0 271 271"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<rect y="70" width="271" height="132" fill="currentColor" />
<rect x="60" y="241" width="150" height="30" rx="15" fill="currentColor" />
</svg>
)