mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-25 14:25:02 +00:00
15 lines
342 B
TypeScript
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
|