JSFiddle - React, Tailwind, and code Playground
by rebooting
HTML
<link rel="stylesheet" href="http://code.ionicframework.com/nightly/css/ionic.min.css">
<script src="http://code.ionicframework.com/nightly/js/ionic.bundle.js"></script>
<div ng-app="jsApp">
<div ng-controller="Ctrl1">
<ion-content>
<ion-list show-delete="1">
<ion-item>
<ion-delete-button class="ion-minus-circled"></ion-delete-button>Hello, list item!</ion-item>
</ion-list>
</ion-content>
</div>
</div>
JavaScript
angular.module('jsApp', ['ionic'])
.controller('Ctrl1', function ($scope) {
});