
* Add pill component * Add preview pill to gift card list * Use outlined prop * Add arrow to tooltip * Add preview pill to gift card view headers * Add preview pills to mark preview features * Update macaw * Update tests * Update messages * Add black color to pill preview tooltip Co-authored-by: Wojciech <wojciech.mista@hotmail.com>
15 lines
371 B
TypeScript
15 lines
371 B
TypeScript
import { defineMessages } from "react-intl";
|
|
|
|
const messages = defineMessages({
|
|
label: {
|
|
defaultMessage: "Preview",
|
|
description: "indicator that feature is in preview mode"
|
|
},
|
|
tooltip: {
|
|
defaultMessage:
|
|
"This feature is in a preview state and can be subject to changes at later point",
|
|
description: "tooltip"
|
|
}
|
|
});
|
|
|
|
export default messages;
|