// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.

#pragma once

namespace Microsoft::ReactNative {
enum class TextTransform : uint8_t { Undefined = 0, None, Uppercase, Lowercase, Capitalize };
}
