revert: restore original Docker logo icon
Revert back to the Simple Icons Docker logo. The user wanted to keep the original Docker whale logo icon, not replace it with the Container icon.
This commit is contained in:
parent
6a230b7677
commit
851a61ca31
1 changed files with 11 additions and 2 deletions
|
|
@ -1,5 +1,5 @@
|
|||
import type { Component } from 'solid-js';
|
||||
import Container from 'lucide-solid/icons/container';
|
||||
import { siDocker } from 'simple-icons';
|
||||
|
||||
interface DockerIconProps {
|
||||
class?: string;
|
||||
|
|
@ -7,5 +7,14 @@ interface DockerIconProps {
|
|||
}
|
||||
|
||||
export const DockerIcon: Component<DockerIconProps> = (props) => (
|
||||
<Container class={props.class} aria-label={props.title ?? 'Docker'} />
|
||||
<svg
|
||||
class={props.class}
|
||||
role="img"
|
||||
viewBox="0 0 24 24"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
aria-label={props.title ?? 'Docker'}
|
||||
>
|
||||
<title>{props.title ?? 'Docker'}</title>
|
||||
<path d={siDocker.path} fill="currentColor" />
|
||||
</svg>
|
||||
);
|
||||
|
|
|
|||
Loading…
Reference in a new issue