{"ast":null,"code":"var __jsx = React.createElement;\nimport React from 'react';\nimport Select from '~/components/Select';\nimport { rem } from '~/utils/style';\nimport styled from 'styled-components';\nimport { useTranslation } from '~/utils/i18n';\nconst Title = styled.div.withConfig({\n  displayName: \"RunSelect__Title\",\n  componentId: \"xklzk2-0\"\n})([\"font-size:\", \";line-height:\", \";font-weight:700;margin-bottom:\", \";\"], rem(16), rem(16), rem(10));\n\nconst RunSelect = ({\n  runs,\n  value,\n  onChange\n}) => {\n  const {\n    t\n  } = useTranslation('common');\n  return __jsx(React.Fragment, null, __jsx(Title, null, t('select-runs')), __jsx(Select, {\n    multiple: true,\n    list: runs,\n    value: value,\n    onChange: value => onChange === null || onChange === void 0 ? void 0 : onChange(value)\n  }));\n};\n\nexport default RunSelect;","map":null,"metadata":{},"sourceType":"module"}