forked from crowetic/commerce
Changes
This commit is contained in:
15
components/ui/_BLANK/Featurebar.tsx
Normal file
15
components/ui/_BLANK/Featurebar.tsx
Normal file
@@ -0,0 +1,15 @@
|
||||
import cn from "classnames";
|
||||
import { FunctionComponent } from "react";
|
||||
import s from "./Featurebar.module.css";
|
||||
|
||||
interface Props {
|
||||
className?: string;
|
||||
children?: any;
|
||||
}
|
||||
|
||||
const Featurebar: FunctionComponent<Props> = ({ children, className }) => {
|
||||
const rootClassName = cn(s.root, className);
|
||||
return <div className={rootClassName}>{children}</div>;
|
||||
};
|
||||
|
||||
export default Featurebar;
|
Reference in New Issue
Block a user