13 lines
604 B
TypeScript
13 lines
604 B
TypeScript
import { createCustomIcon } from "./create";
|
|
|
|
export const IconPowerOff = createCustomIcon({
|
|
svgContent: `<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="icon icon-tabler icons-tabler-outline icon-tabler-power-off">
|
|
<path xmlns="http://www.w3.org/2000/svg" d="M3 3l18 18"/>
|
|
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
|
|
<path d="M7 6a7.75 7.75 0 1 0 10 0" />
|
|
<path d="M12 4l0 4" />
|
|
</svg>`,
|
|
type: "outline",
|
|
name: "power-off",
|
|
});
|