import React from 'react' import {BlockDecoratorProps} from 'sanity' type TextAlignValue = 'left' | 'center' | 'right' interface TextAlignBlockDecoratorProps extends BlockDecoratorProps { value: TextAlignValue } export const TextAlign = (props: TextAlignBlockDecoratorProps) => { return (