import * as React from 'react'; import ComponentBestPractices from '../../../../components/ComponentBestPractices'; const doList = [ 'Ensure that a contrast ratio of at least 4.5:1 exists between text and the background behind the text.', 'To ensure that RTL mode will be properly handled for provided `content` value, ensure that `content` is provided as plain string (then `dir="auto"` attribute will be applied automatically).', 'For other `content` value types (i.e. that use elements inside), in order to properly jandle RTL mode, ensure that `dir="auto"` attribute is applied for all places in content where necessary.', ]; const TextBestPractices: React.FunctionComponent<{}> = () => { return ; }; export default TextBestPractices;