Skip to content

square-play

music • audio • video • start • run

Created:

v0.222.0

Last changed:

v0.352.0

Contributors:

danielbayleykarsa-mistmere
html
<i data-lucide="square-play"></i>
tsx
import { SquarePlay } from 'lucide-react';

const App = () => {
  return (
    <SquarePlay />
  );
};

export default App;
vue
<script setup>
  import { SquarePlay } from 'lucide-vue-next';
</script>

<template>
  <SquarePlay />
</template>
svelte
<script>
import { SquarePlay } from 'lucide-svelte';
</script>

<SquarePlay />
tsx
import { SquarePlay } from 'lucide-preact';

const App = () => {
  return (
    <SquarePlay />
  );
};

export default App;
tsx
import { SquarePlay } from 'lucide-solid';

const App = () => {
  return (
    <SquarePlay />
  );
};

export default App;
tsx
// app.module.ts
import { LucideAngularModule, SquarePlay } from 'lucide-angular';

@NgModule({
  imports: [
    LucideAngularModule.pick({ SquarePlay })
  ],
})

// app.component.html
<lucide-icon name="square-play"></lucide-icon>
html
<style>
@import ('~lucide-static/font/Lucide.css');
</style>

<div class="icon-square-play"></div>