Actions List Frame

Frames are only ever used for other elements. They are never used directly as is. The only exception to that rule are the page frames. Refer to the info Tab to see where they are used.
<div class="sds-actionsList">
    <div class="sds-actionsList__heading">
        <div class="sds-actionsList__title">

        </div>

    </div>
    <div class="sds-actionsList__body">

    </div>

</div>
<div class="{{ namespace }}actionsList{% for mod in modifiers %} {{ mod }}{% endfor %}{% for mod in classes %} {{ mod }}{% endfor %}">
	<div class="{{ namespace }}actionsList__heading">
		<div class="{{ namespace }}actionsList__title">
			{{ heading }}
		</div>
		{% block headingOptions %}
		{% endblock %}
	</div>
	<div class="{{ namespace }}actionsList__body">
		{% block body %}
		{% endblock %}
	</div>
	{% if footer %}
	<div class="{{ namespace }}actionsList__footer">
		{% endif %}
		{% block footer %}
		{% endblock %}
		{% if footer %}
	</div>
	{% endif %}
</div>