Files
metabuilder/fakemui/icons/FormatAlignJustify.tsx
2025-12-30 14:51:25 +00:00

15 lines
342 B
TypeScript

import { type IconProps, Icon } from './Icon'
/**
* FormatAlignJustify icon - Text alignment justify
*/
export function FormatAlignJustify(props: IconProps) {
return (
<Icon {...props}>
<path d="M3 21h18v-2H3v2zm0-4h18v-2H3v2zm0-4h18v-2H3v2zm0-4h18V7H3v2zm0-6v2h18V3H3z" />
</Icon>
)
}
export default FormatAlignJustify