Skip to content

square-star

badge • medal • honour • decoration • order • pin • laurel • trophy • medallion • insignia • bronze • silver • gold

Created:

v0.537.0

Last changed:

v0.537.0

Contributors:

karsa-mistmere
js
import { createIcons, icons } from 'lucide';

createIcons({ icons });

document.body.append('<i data-lucide="square-star"></i>');  
tsx
import { SquareStar } from 'lucide-react';

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

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

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

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

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

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

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

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

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

// app.component.html
<lucide-icon name="square-star"></lucide-icon>
html
<div class="icon-square-star"></div>

See this icon in action

Bug
Feature
Square
112
8
11