PteroTheme/resources/scripts/components/elements/Icon.tsx

32 lines
803 B
TypeScript
Raw Normal View History

2020-10-15 04:13:36 +01:00
import React, { CSSProperties } from 'react';
import { IconDefinition } from '@fortawesome/fontawesome-svg-core';
import tw from 'twin.macro';
interface Props {
icon: IconDefinition;
className?: string;
style?: CSSProperties;
}
const Icon = ({ icon, className, style }: Props) => {
let [width, height, , , paths] = icon.icon;
2020-10-15 04:13:36 +01:00
paths = Array.isArray(paths) ? paths : [paths];
2020-10-15 04:13:36 +01:00
return (
<svg
xmlns={'http://www.w3.org/2000/svg'}
viewBox={`0 0 ${width} ${height}`}
css={tw`fill-current inline-block`}
className={className}
style={style}
>
{paths.map((path, index) => (
<path key={`svg_path_${index}`} d={path} />
2020-10-15 04:13:36 +01:00
))}
</svg>
);
};
export default Icon;