Repository URL to install this package:
|
Version:
0.14.1 ▾
|
import { ToggleMoleculeProps } from './typings'
export function toQa(props: ToggleMoleculeProps) {
const { filterLabel } = props
const lowerCasedFilterLabel =
filterLabel &&
filterLabel
.toString()
.toLowerCase()
.replace(/\s/g, '')
const dataQa = props.dataQa + lowerCasedFilterLabel
return dataQa
}