EuiTableRowCell is overriding the className prop of children. This occurs when defining a column like so. The EuiLink does not retain the className prop.
{
field: 'title',
name: 'Title',
render: (field, record) => (
<EuiLink
className="myClass"
href="#"
>
click me
</EuiLink>
)
}
Work around is to just wrap child in another element.
cc @chandlerprall