Rendering partial in partials

Hi, is it possible to use partial inside the partial with multilines ?

something like this one.

{{ partial "components/bullet_item.html" (
                  dict 
                  "details" `
                    <div>
                      <p>This is a sample</p>
                      {{ partial "components/bullet_item.html" (
                        dict 
                        "details" `
                          <div>
                            <p>Item 1</p>
                          </div>
                        `
                      )}}
                    </div>
                  `
)}}

this is the components/bullet_item.html

<div>
{{.details | safeHTML}}
</div>