Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | 4x 4x 4x 4x 4x 29x | /*---------------------------------------------------------------------------------------------
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
* See LICENSE.md in the project root for license terms and full copyright notice.
*--------------------------------------------------------------------------------------------*/
import React from "react";
import { Text } from "@itwin/itwinui-react";
import "./RequiredFieldsNotice.scss";
import { EC3Widget } from "../EC3Widget";
export const RequiredFieldsNotice = () => (
<Text variant="small" className="ec3w-template-field-legend">
{EC3Widget.translate("requiredFieldNotice")}
</Text>
);
|