editor.js/src/components/utils/popover/components/hint/hint.const.ts
Tanya Fomina 7f053d960a Cleanup
2024-05-04 21:31:54 +03:00

17 lines
329 B
TypeScript

import { bem } from '../../../bem';
/**
* Hint block CSS class constructor
*/
const className = bem('ce-hint');
/**
* CSS class names to be used in hint class
*/
export const css = {
root: className(),
alignedLeft: className(null, 'align-left'),
title: className('title'),
description: className('description'),
};