mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-25 14:25:02 +00:00
15 lines
339 B
TypeScript
15 lines
339 B
TypeScript
import { type IconProps, Icon } from './Icon'
|
|
|
|
/**
|
|
* FormatAlignCenter icon - Text alignment center
|
|
*/
|
|
export function FormatAlignCenter(props: IconProps) {
|
|
return (
|
|
<Icon {...props}>
|
|
<path d="M7 15v2h10v-2H7zm-4 6h18v-2H3v2zm0-8h18v-2H3v2zm4-6v2h10V7H7zM3 3v2h18V3H3z" />
|
|
</Icon>
|
|
)
|
|
}
|
|
|
|
export default FormatAlignCenter
|