Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 | import { ReactElement, SVGProps } from "react";
function HightVolume(props: SVGProps<SVGSVGElement>) {
return (
<svg height="16" width="16" viewBox="0 0 16 16">
<path
fill={typeof props.color === "string" ? props.color : "#ffffffb3"}
d="M12.945 1.379l-.652.763c1.577 1.462 2.57 3.544 2.57 5.858s-.994 4.396-2.57 5.858l.651.763a8.966 8.966 0 00.001-13.242zm-2.272 2.66l-.651.763a4.484 4.484 0 01-.001 6.397l.651.763c1.04-1 1.691-2.404 1.691-3.961s-.65-2.962-1.69-3.962zM0 5v6h2.804L8 14V2L2.804 5H0zm7-1.268v8.536L3.072 10H1V6h2.072L7 3.732z"
></path>
</svg>
);
}
function MediumVolume(props: SVGProps<SVGSVGElement>) {
return (
<svg height="16" width="16" viewBox="0 0 16 16">
<path
fill={typeof props.color === "string" ? props.color : "#ffffffb3"}
d="M0 11.032v-6h2.802l5.198-3v12l-5.198-3H0zm7 1.27v-8.54l-3.929 2.27H1v4h2.071L7 12.302zm4.464-2.314q.401-.925.401-1.956 0-1.032-.4-1.957-.402-.924-1.124-1.623L11 3.69q.873.834 1.369 1.957.496 1.123.496 2.385 0 1.262-.496 2.385-.496 1.123-1.369 1.956l-.659-.762q.722-.698 1.123-1.623z"
></path>{" "}
</svg>
);
}
function LowVolume(props: SVGProps<SVGSVGElement>) {
return (
<svg height="16" width="16" viewBox="0 0 16 16">
<path
fill={typeof props.color === "string" ? props.color : "#ffffffb3"}
d="M10.04 5.984l.658-.77q.548.548.858 1.278.31.73.31 1.54 0 .54-.144 1.055-.143.516-.4.957-.259.44-.624.805l-.658-.77q.825-.865.825-2.047 0-1.183-.825-2.048zM0 11.032v-6h2.802l5.198-3v12l-5.198-3H0zm7 1.27v-8.54l-3.929 2.27H1v4h2.071L7 12.302z"
></path>{" "}
</svg>
);
}
function VolumeOff(props: SVGProps<SVGSVGElement>) {
return (
<svg height="16" width="16" viewBox="0 0 16 16">
<path
fill={typeof props.color === "string" ? props.color : "#ffffffb3"}
d="M0 5v6h2.804L8 14V2L2.804 5H0zm7-1.268v8.536L3.072 10H1V6h2.072L7 3.732zm8.623 2.121l-.707-.707-2.147 2.147-2.146-2.147-.707.707L12.062 8l-2.146 2.146.707.707 2.146-2.147 2.147 2.147.707-.707L13.477 8l2.146-2.147z"
></path>{" "}
</svg>
);
}
export default function Volume({
volume,
...props
}: SVGProps<SVGSVGElement> & { volume: number }): ReactElement {
Iif (volume > 0.75) {
return <HightVolume {...props} />;
}
Iif (volume > 0.4) {
return <MediumVolume {...props} />;
}
Iif (volume === 0) {
return <VolumeOff {...props} />;
}
return <LowVolume {...props} />;
}
|