(args)
| 196 | } |
| 197 | |
| 198 | export const OnlyImage = (args) => ({ |
| 199 | components: { ContentBox, MixedColorLabel, LearnMoreButton }, |
| 200 | props: Object.keys(args), |
| 201 | template: ` |
| 202 | <content-box :arrangement="arrangement" :has-padding="hasPadding" :main-image-bg="mainImageBg" :equal-width="equalWidth"> |
| 203 | <template v-slot:image v-if="image"> |
| 204 | <img src="/images/pages/codequest/cc2-2.webp" /> |
| 205 | </template> |
| 206 | </content-box> |
| 207 | ` |
| 208 | }) |
| 209 | OnlyImage.args = { |
| 210 | arrangement: 'vertical', |
| 211 | hasPadding: false, |
nothing calls this directly
no outgoing calls
no test coverage detected